pub struct AnimColor {
pub r: f32,
pub g: f32,
pub b: f32,
pub a: f32,
}Expand description
Color for animation (RGBA as f32 0-1).
Fields§
§r: f32§g: f32§b: f32§a: f32Implementations§
Trait Implementations§
impl Copy for AnimColor
Source§impl Interpolate for AnimColor
impl Interpolate for AnimColor
impl StructuralPartialEq for AnimColor
Auto Trait Implementations§
impl Freeze for AnimColor
impl RefUnwindSafe for AnimColor
impl Send for AnimColor
impl Sync for AnimColor
impl Unpin for AnimColor
impl UnsafeUnpin for AnimColor
impl UnwindSafe for AnimColor
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