pub enum BorderLeftStyleValue {
Show 15 variants
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
None,
Hidden,
Dotted,
Dashed,
Solid,
Double,
Groove,
Ridge,
Inset,
Outset,
}Variants§
Initial
Inherit
Revert
RevertLayer
Unset
None
Hidden
Dotted
Dashed
Solid
Double
Groove
Ridge
Inset
Outset
Implementations§
Source§impl BorderLeftStyleValue
impl BorderLeftStyleValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::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 BorderLeftStyleValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Unset otherwise false
Sourcepub const fn is_none(&self) -> bool
pub const fn is_none(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::None otherwise false
Returns true if the enum is BorderLeftStyleValue::Hidden otherwise false
Sourcepub const fn is_dotted(&self) -> bool
pub const fn is_dotted(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Dotted otherwise false
Sourcepub const fn is_dashed(&self) -> bool
pub const fn is_dashed(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Dashed otherwise false
Sourcepub const fn is_solid(&self) -> bool
pub const fn is_solid(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Solid otherwise false
Sourcepub const fn is_double(&self) -> bool
pub const fn is_double(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Double otherwise false
Sourcepub const fn is_groove(&self) -> bool
pub const fn is_groove(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Groove otherwise false
Sourcepub const fn is_ridge(&self) -> bool
pub const fn is_ridge(&self) -> bool
Returns true if the enum is BorderLeftStyleValue::Ridge otherwise false
Trait Implementations§
Source§impl Clone for BorderLeftStyleValue
impl Clone for BorderLeftStyleValue
Source§fn clone(&self) -> BorderLeftStyleValue
fn clone(&self) -> BorderLeftStyleValue
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BorderLeftStyleValue
impl Debug for BorderLeftStyleValue
Source§impl Display for BorderLeftStyleValue
impl Display for BorderLeftStyleValue
Source§impl PartialEq for BorderLeftStyleValue
impl PartialEq for BorderLeftStyleValue
Source§fn eq(&self, other: &BorderLeftStyleValue) -> bool
fn eq(&self, other: &BorderLeftStyleValue) -> bool
self and other values to be equal, and is used by ==.