pub enum ScrollTimelineNameValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
None,
DashedIdent(DashedIdent),
}Variants§
Implementations§
Source§impl ScrollTimelineNameValue
impl ScrollTimelineNameValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is ScrollTimelineNameValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is ScrollTimelineNameValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is ScrollTimelineNameValue::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 ScrollTimelineNameValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is ScrollTimelineNameValue::Unset otherwise false
Sourcepub const fn is_none(&self) -> bool
pub const fn is_none(&self) -> bool
Returns true if the enum is ScrollTimelineNameValue::None otherwise false
Sourcepub const fn is_dashed_ident(&self) -> bool
pub const fn is_dashed_ident(&self) -> bool
Returns true if the enum is ScrollTimelineNameValue::DashedIdent otherwise false
Trait Implementations§
Source§impl Clone for ScrollTimelineNameValue
impl Clone for ScrollTimelineNameValue
Source§fn clone(&self) -> ScrollTimelineNameValue
fn clone(&self) -> ScrollTimelineNameValue
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 ScrollTimelineNameValue
impl Debug for ScrollTimelineNameValue
Source§impl Display for ScrollTimelineNameValue
impl Display for ScrollTimelineNameValue
Source§impl PartialEq for ScrollTimelineNameValue
impl PartialEq for ScrollTimelineNameValue
impl StructuralPartialEq for ScrollTimelineNameValue
impl UnitDataType<ScrollTimelineName<ScrollTimelineNameValue>> for ScrollTimelineNameValue
Auto Trait Implementations§
impl Freeze for ScrollTimelineNameValue
impl RefUnwindSafe for ScrollTimelineNameValue
impl Send for ScrollTimelineNameValue
impl Sync for ScrollTimelineNameValue
impl Unpin for ScrollTimelineNameValue
impl UnwindSafe for ScrollTimelineNameValue
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