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