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