pub enum KeyframeValue {
Float(f32),
Int(i32),
Bool(bool),
String(&'static str),
}Variants§
Trait Implementations§
Source§impl Clone for KeyframeValue
impl Clone for KeyframeValue
Source§fn clone(&self) -> KeyframeValue
fn clone(&self) -> KeyframeValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for KeyframeValue
impl RefUnwindSafe for KeyframeValue
impl Send for KeyframeValue
impl Sync for KeyframeValue
impl Unpin for KeyframeValue
impl UnsafeUnpin for KeyframeValue
impl UnwindSafe for KeyframeValue
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