pub enum AnimationFillMode {
None,
Forwards,
Backwards,
Both,
}Expand description
Fill behavior outside keyframe/animation active range.
Variants§
Implementations§
Source§impl AnimationFillMode
impl AnimationFillMode
pub fn try_from_raw(attr: ArkUI_AnimationFillMode) -> Option<Self>
Trait Implementations§
Source§impl Clone for AnimationFillMode
impl Clone for AnimationFillMode
Source§fn clone(&self) -> AnimationFillMode
fn clone(&self) -> AnimationFillMode
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 AnimationFillMode
Source§impl Debug for AnimationFillMode
impl Debug for AnimationFillMode
impl Eq for AnimationFillMode
Source§impl From<AnimationFillMode> for ArkUI_AnimationFillMode
impl From<AnimationFillMode> for ArkUI_AnimationFillMode
Source§fn from(attr: AnimationFillMode) -> Self
fn from(attr: AnimationFillMode) -> Self
Converts to this type from the input type.
Source§impl From<u32> for AnimationFillMode
impl From<u32> for AnimationFillMode
Source§fn from(attr: ArkUI_AnimationFillMode) -> Self
fn from(attr: ArkUI_AnimationFillMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AnimationFillMode
impl PartialEq for AnimationFillMode
impl StructuralPartialEq for AnimationFillMode
Auto Trait Implementations§
impl Freeze for AnimationFillMode
impl RefUnwindSafe for AnimationFillMode
impl Send for AnimationFillMode
impl Sync for AnimationFillMode
impl Unpin for AnimationFillMode
impl UnsafeUnpin for AnimationFillMode
impl UnwindSafe for AnimationFillMode
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