pub struct InvertedFade(/* private fields */);Expand description
A fade animation whose value is inverted: starts at 1.0, ends at 0.0.
Implementations§
Trait Implementations§
Source§impl Animation for InvertedFade
impl Animation for InvertedFade
Source§fn is_complete(&self) -> bool
fn is_complete(&self) -> bool
Whether the animation has reached its end.
Source§impl Clone for InvertedFade
impl Clone for InvertedFade
Source§fn clone(&self) -> InvertedFade
fn clone(&self) -> InvertedFade
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InvertedFade
impl Debug for InvertedFade
impl Copy for InvertedFade
Auto Trait Implementations§
impl Freeze for InvertedFade
impl RefUnwindSafe for InvertedFade
impl Send for InvertedFade
impl Sync for InvertedFade
impl Unpin for InvertedFade
impl UnwindSafe for InvertedFade
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