#[non_exhaustive]#[repr(i32)]pub enum FillBehavior {
HoldEnd = 0,
Stop = 1,
}Expand description
How a timeline behaves once it reaches the end of its active period.
Ordinals match Noesis::FillBehavior.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
HoldEnd = 0
Hold the final animated value after completion.
Stop = 1
Release the animated value (revert to base) after completion.
Trait Implementations§
Source§impl Clone for FillBehavior
impl Clone for FillBehavior
Source§fn clone(&self) -> FillBehavior
fn clone(&self) -> FillBehavior
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 FillBehavior
Source§impl Debug for FillBehavior
impl Debug for FillBehavior
impl Eq for FillBehavior
Source§impl PartialEq for FillBehavior
impl PartialEq for FillBehavior
Source§fn eq(&self, other: &FillBehavior) -> bool
fn eq(&self, other: &FillBehavior) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FillBehavior
Auto Trait Implementations§
impl Freeze for FillBehavior
impl RefUnwindSafe for FillBehavior
impl Send for FillBehavior
impl Sync for FillBehavior
impl Unpin for FillBehavior
impl UnsafeUnpin for FillBehavior
impl UnwindSafe for FillBehavior
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