pub struct AnimationTiming {
pub frame: i32,
pub se: AudioFile,
pub flash_scope: i32,
pub flash_color: Color,
pub flash_duration: i32,
pub condition: i32,
}
Fields§
§frame: i32
§se: AudioFile
§flash_scope: i32
§flash_color: Color
§flash_duration: i32
§condition: i32
Trait Implementations§
Source§impl Debug for AnimationTiming
impl Debug for AnimationTiming
Source§impl<'de> Deserialize<'de> for AnimationTiming
impl<'de> Deserialize<'de> for AnimationTiming
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> FromValue<'a> for AnimationTiming
impl<'a> FromValue<'a> for AnimationTiming
Source§fn from_value(
ctx: &FromValueContext<'_>,
value: &'a Value,
) -> Result<Self, FromValueError>
fn from_value( ctx: &FromValueContext<'_>, value: &'a Value, ) -> Result<Self, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read moreSource§impl IntoValue for AnimationTiming
impl IntoValue for AnimationTiming
Source§fn into_value(
self,
arena: &mut ValueArena,
) -> Result<ValueHandle, IntoValueError>
fn into_value( self, arena: &mut ValueArena, ) -> Result<ValueHandle, IntoValueError>
Turn this type into a Ruby Value.
Auto Trait Implementations§
impl Freeze for AnimationTiming
impl RefUnwindSafe for AnimationTiming
impl Send for AnimationTiming
impl Sync for AnimationTiming
impl Unpin for AnimationTiming
impl UnwindSafe for AnimationTiming
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more