pub struct Fade { /* private fields */ }
Expand description
Simple linear fade animation for a style’s background color.
The animation owns a mutable pointer to the Style
being modified. This
keeps the API lightweight for no_std
targets at the cost of requiring
unsafe access internally.
Implementations§
Auto Trait Implementations§
impl Freeze for Fade
impl RefUnwindSafe for Fade
impl !Send for Fade
impl !Sync for Fade
impl Unpin for Fade
impl UnwindSafe for Fade
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