#[repr(transparent)]
pub struct AnimationEffect(pub i32);

Tuple Fields§

§0: i32

Implementations§

§

impl AnimationEffect

pub const Expand: Self = _

pub const Collapse: Self = _

pub const Reposition: Self = _

pub const FadeIn: Self = _

pub const FadeOut: Self = _

pub const AddToList: Self = _

pub const DeleteFromList: Self = _

pub const AddToGrid: Self = _

pub const DeleteFromGrid: Self = _

pub const AddToSearchGrid: Self = _

pub const DeleteFromSearchGrid: Self = _

pub const AddToSearchList: Self = _

pub const DeleteFromSearchList: Self = _

pub const ShowEdgeUI: Self = _

pub const ShowPanel: Self = _

pub const HideEdgeUI: Self = _

pub const HidePanel: Self = _

pub const ShowPopup: Self = _

pub const HidePopup: Self = _

pub const PointerDown: Self = _

pub const PointerUp: Self = _

pub const DragSourceStart: Self = _

pub const DragSourceEnd: Self = _

pub const TransitionContent: Self = _

pub const Reveal: Self = _

pub const Hide: Self = _

pub const DragBetweenEnter: Self = _

pub const DragBetweenLeave: Self = _

pub const SwipeSelect: Self = _

pub const SwipeDeselect: Self = _

pub const SwipeReveal: Self = _

pub const EnterPage: Self = _

pub const TransitionPage: Self = _

pub const CrossFade: Self = _

pub const Peek: Self = _

pub const UpdateBadge: Self = _

Trait Implementations§

§

impl Clone for AnimationEffect

§

fn clone(&self) -> AnimationEffect

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for AnimationEffect

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for AnimationEffect

§

fn default() -> AnimationEffect

Returns the “default value” for a type. Read more
§

impl PartialEq for AnimationEffect

§

fn eq(&self, other: &AnimationEffect) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for AnimationEffect

§

impl Eq for AnimationEffect

§

impl StructuralPartialEq for AnimationEffect

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.