pub enum AnimClass {
Enter,
Exit,
Move,
}Expand description
Which presence class an animation belongs to.
Variants§
Enter
Node exists in the new DOM only.
Exit
Node existed in the old DOM only. Needs exit-retention to be visible.
Move
Node exists in both, at different geometry.
Trait Implementations§
impl Copy for AnimClass
impl Eq for AnimClass
impl StructuralPartialEq for AnimClass
Auto Trait Implementations§
impl Freeze for AnimClass
impl RefUnwindSafe for AnimClass
impl Send for AnimClass
impl Sync for AnimClass
impl Unpin for AnimClass
impl UnsafeUnpin for AnimClass
impl UnwindSafe for AnimClass
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