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