pub enum ExtendedAnimationMode {
StandardScroll = 0,
FlowingLiquid = 1,
TurbulentFlow = 2,
Vortex = 3,
Wave = 4,
}Expand description
Extended animation modes for TXAC
Variants§
StandardScroll = 0
Standard scrolling (legacy compatibility)
FlowingLiquid = 1
Flowing liquid animation
TurbulentFlow = 2
Turbulent flow with noise
Vortex = 3
Whirlpool/vortex animation
Wave = 4
Wave motion
Implementations§
Trait Implementations§
Source§impl Clone for ExtendedAnimationMode
impl Clone for ExtendedAnimationMode
Source§fn clone(&self) -> ExtendedAnimationMode
fn clone(&self) -> ExtendedAnimationMode
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 ExtendedAnimationMode
Source§impl Debug for ExtendedAnimationMode
impl Debug for ExtendedAnimationMode
impl Eq for ExtendedAnimationMode
Source§impl PartialEq for ExtendedAnimationMode
impl PartialEq for ExtendedAnimationMode
Source§fn eq(&self, other: &ExtendedAnimationMode) -> bool
fn eq(&self, other: &ExtendedAnimationMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExtendedAnimationMode
Auto Trait Implementations§
impl Freeze for ExtendedAnimationMode
impl RefUnwindSafe for ExtendedAnimationMode
impl Send for ExtendedAnimationMode
impl Sync for ExtendedAnimationMode
impl Unpin for ExtendedAnimationMode
impl UnsafeUnpin for ExtendedAnimationMode
impl UnwindSafe for ExtendedAnimationMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more