pub enum Transitions {
All,
List(Vec<Transition>),
}
Variants§
All
List(Vec<Transition>)
Implementations§
Trait Implementations§
Source§impl Clone for Transitions
impl Clone for Transitions
Source§fn clone(&self) -> Transitions
fn clone(&self) -> Transitions
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 Transitions
impl Debug for Transitions
Auto Trait Implementations§
impl Freeze for Transitions
impl RefUnwindSafe for Transitions
impl Send for Transitions
impl Sync for Transitions
impl Unpin for Transitions
impl UnwindSafe for Transitions
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