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