pub enum BorderBottomRightRadiusValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
LengthPercentage(LengthPercentage),
}Variants§
Implementations§
Source§impl BorderBottomRightRadiusValue
impl BorderBottomRightRadiusValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is BorderBottomRightRadiusValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is BorderBottomRightRadiusValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is BorderBottomRightRadiusValue::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 BorderBottomRightRadiusValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is BorderBottomRightRadiusValue::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 BorderBottomRightRadiusValue::LengthPercentage otherwise false
Trait Implementations§
Source§impl Clone for BorderBottomRightRadiusValue
impl Clone for BorderBottomRightRadiusValue
Source§fn clone(&self) -> BorderBottomRightRadiusValue
fn clone(&self) -> BorderBottomRightRadiusValue
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 BorderBottomRightRadiusValue
impl Debug for BorderBottomRightRadiusValue
Source§impl PartialEq for BorderBottomRightRadiusValue
impl PartialEq for BorderBottomRightRadiusValue
Source§fn eq(&self, other: &BorderBottomRightRadiusValue) -> bool
fn eq(&self, other: &BorderBottomRightRadiusValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BorderBottomRightRadiusValue
impl UnitDataType<BorderBottomRightRadius<BorderBottomRightRadiusValue>> for BorderBottomRightRadiusValue
Auto Trait Implementations§
impl Freeze for BorderBottomRightRadiusValue
impl RefUnwindSafe for BorderBottomRightRadiusValue
impl Send for BorderBottomRightRadiusValue
impl Sync for BorderBottomRightRadiusValue
impl Unpin for BorderBottomRightRadiusValue
impl UnwindSafe for BorderBottomRightRadiusValue
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