pub enum AlignItemsValue {
Show 19 variants
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Normal,
Stretch,
First,
Last,
Baseline,
Safe,
Unsafe,
Center,
Start,
End,
SelfStart,
SelfEnd,
FlexStart,
FlexEnd,
}Variants§
Initial
Inherit
Revert
RevertLayer
Unset
Normal
Stretch
First
Last
Baseline
Safe
Unsafe
Center
Start
End
SelfStart
SelfEnd
FlexStart
FlexEnd
Implementations§
Source§impl AlignItemsValue
impl AlignItemsValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is AlignItemsValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is AlignItemsValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is AlignItemsValue::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 AlignItemsValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is AlignItemsValue::Unset otherwise false
Sourcepub const fn is_normal(&self) -> bool
pub const fn is_normal(&self) -> bool
Returns true if the enum is AlignItemsValue::Normal otherwise false
Sourcepub const fn is_stretch(&self) -> bool
pub const fn is_stretch(&self) -> bool
Returns true if the enum is AlignItemsValue::Stretch otherwise false
Sourcepub const fn is_first(&self) -> bool
pub const fn is_first(&self) -> bool
Returns true if the enum is AlignItemsValue::First otherwise false
Sourcepub const fn is_last(&self) -> bool
pub const fn is_last(&self) -> bool
Returns true if the enum is AlignItemsValue::Last otherwise false
Sourcepub const fn is_baseline(&self) -> bool
pub const fn is_baseline(&self) -> bool
Returns true if the enum is AlignItemsValue::Baseline otherwise false
Sourcepub const fn is_safe(&self) -> bool
pub const fn is_safe(&self) -> bool
Returns true if the enum is AlignItemsValue::Safe otherwise false
Sourcepub const fn is_unsafe(&self) -> bool
pub const fn is_unsafe(&self) -> bool
Returns true if the enum is AlignItemsValue::Unsafe otherwise false
Sourcepub const fn is_center(&self) -> bool
pub const fn is_center(&self) -> bool
Returns true if the enum is AlignItemsValue::Center otherwise false
Sourcepub const fn is_start(&self) -> bool
pub const fn is_start(&self) -> bool
Returns true if the enum is AlignItemsValue::Start otherwise false
Sourcepub const fn is_end(&self) -> bool
pub const fn is_end(&self) -> bool
Returns true if the enum is AlignItemsValue::End otherwise false
Sourcepub const fn is_self_start(&self) -> bool
pub const fn is_self_start(&self) -> bool
Returns true if the enum is AlignItemsValue::SelfStart otherwise false
Sourcepub const fn is_self_end(&self) -> bool
pub const fn is_self_end(&self) -> bool
Returns true if the enum is AlignItemsValue::SelfEnd otherwise false
Sourcepub const fn is_flex_start(&self) -> bool
pub const fn is_flex_start(&self) -> bool
Returns true if the enum is AlignItemsValue::FlexStart otherwise false
Sourcepub const fn is_flex_end(&self) -> bool
pub const fn is_flex_end(&self) -> bool
Returns true if the enum is AlignItemsValue::FlexEnd otherwise false
Trait Implementations§
Source§impl Clone for AlignItemsValue
impl Clone for AlignItemsValue
Source§fn clone(&self) -> AlignItemsValue
fn clone(&self) -> AlignItemsValue
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more