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