pub enum ScrollTimelineAxisValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Block,
Inline,
X,
Y,
}Variants§
Implementations§
Source§impl ScrollTimelineAxisValue
impl ScrollTimelineAxisValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::Revert otherwise false
Sourcepub const fn is_revert_layer(&self) -> bool
pub const fn is_revert_layer(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::Unset otherwise false
Sourcepub const fn is_block(&self) -> bool
pub const fn is_block(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::Block otherwise false
Sourcepub const fn is_inline(&self) -> bool
pub const fn is_inline(&self) -> bool
Returns true if the enum is ScrollTimelineAxisValue::Inline otherwise false
Trait Implementations§
Source§impl Clone for ScrollTimelineAxisValue
impl Clone for ScrollTimelineAxisValue
Source§fn clone(&self) -> ScrollTimelineAxisValue
fn clone(&self) -> ScrollTimelineAxisValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScrollTimelineAxisValue
impl Debug for ScrollTimelineAxisValue
Source§impl Display for ScrollTimelineAxisValue
impl Display for ScrollTimelineAxisValue
Source§impl PartialEq for ScrollTimelineAxisValue
impl PartialEq for ScrollTimelineAxisValue
impl StructuralPartialEq for ScrollTimelineAxisValue
impl UnitDataType<ScrollTimelineAxis<ScrollTimelineAxisValue>> for ScrollTimelineAxisValue
Auto Trait Implementations§
impl Freeze for ScrollTimelineAxisValue
impl RefUnwindSafe for ScrollTimelineAxisValue
impl Send for ScrollTimelineAxisValue
impl Sync for ScrollTimelineAxisValue
impl Unpin for ScrollTimelineAxisValue
impl UnwindSafe for ScrollTimelineAxisValue
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