pub enum MotionTrigger {
Manual,
Load,
Visible,
AllVisible,
AnyVisible,
Hover,
Click,
ScrollProgress,
RouteEnter,
RouteExit,
StateChange,
}Variants§
Manual
Load
Visible
AllVisible
AnyVisible
Hover
Click
ScrollProgress
RouteEnter
RouteExit
StateChange
Implementations§
Trait Implementations§
Source§impl Clone for MotionTrigger
impl Clone for MotionTrigger
Source§fn clone(&self) -> MotionTrigger
fn clone(&self) -> MotionTrigger
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MotionTrigger
Source§impl Debug for MotionTrigger
impl Debug for MotionTrigger
Source§impl Default for MotionTrigger
impl Default for MotionTrigger
Source§fn default() -> MotionTrigger
fn default() -> MotionTrigger
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MotionTrigger
impl<'de> Deserialize<'de> for MotionTrigger
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MotionTrigger
Source§impl PartialEq for MotionTrigger
impl PartialEq for MotionTrigger
Source§fn eq(&self, other: &MotionTrigger) -> bool
fn eq(&self, other: &MotionTrigger) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MotionTrigger
impl Serialize for MotionTrigger
impl StructuralPartialEq for MotionTrigger
Auto Trait Implementations§
impl Freeze for MotionTrigger
impl RefUnwindSafe for MotionTrigger
impl Send for MotionTrigger
impl Sync for MotionTrigger
impl Unpin for MotionTrigger
impl UnsafeUnpin for MotionTrigger
impl UnwindSafe for MotionTrigger
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