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