Struct freya::hooks::TransitionsManager
pub struct TransitionsManager<'a> { /* private fields */ }
Expand description
Manage the lifecyle of an [AnimationTransitionManager].
Implementations§
§impl<'a> TransitionsManager<'a>
impl<'a> TransitionsManager<'a>
pub fn reverse(&self)
pub fn reverse(&self)
Animate from the end to the start.
pub fn start(&self)
pub fn start(&self)
Animate from the start to the end.
pub fn clear(&self)
pub fn clear(&self)
Clear all the currently running Transitions.
pub fn is_animating(&self) -> bool
pub fn is_animating(&self) -> bool
Check whether there are Transitions running or not.
pub fn is_at_start(&self) -> bool
pub fn is_at_start(&self) -> bool
Check whether the Transitions are at the start or at the end.
pub fn get(&self, index: usize) -> Option<TransitionState>
pub fn get(&self, index: usize) -> Option<TransitionState>
Get an TransitionState
Trait Implementations§
§impl<'a> Clone for TransitionsManager<'a>
impl<'a> Clone for TransitionsManager<'a>
§fn clone(&self) -> TransitionsManager<'a>
fn clone(&self) -> TransitionsManager<'a>
Returns a copy 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 more