pub struct BorderBottomLeftRadiusStyleValue(pub LengthPercentage, pub Option<LengthPercentage>);Expand description
Represents the style value for border-bottom-left-radius as defined in css-borders-4.
The border-radius CSS property rounds the corners of the border drawn around an element.
The grammar is defined as:
<length-percentage [0,∞]>{1,2}Tuple Fields§
§0: LengthPercentage§1: Option<LengthPercentage>Trait Implementations§
Source§impl Clone for BorderBottomLeftRadiusStyleValue
impl Clone for BorderBottomLeftRadiusStyleValue
Source§fn clone(&self) -> BorderBottomLeftRadiusStyleValue
fn clone(&self) -> BorderBottomLeftRadiusStyleValue
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 Ord for BorderBottomLeftRadiusStyleValue
impl Ord for BorderBottomLeftRadiusStyleValue
Source§fn cmp(&self, other: &BorderBottomLeftRadiusStyleValue) -> Ordering
fn cmp(&self, other: &BorderBottomLeftRadiusStyleValue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for BorderBottomLeftRadiusStyleValue
impl<'a> Parse<'a> for BorderBottomLeftRadiusStyleValue
Source§impl PartialEq for BorderBottomLeftRadiusStyleValue
impl PartialEq for BorderBottomLeftRadiusStyleValue
Source§fn eq(&self, other: &BorderBottomLeftRadiusStyleValue) -> bool
fn eq(&self, other: &BorderBottomLeftRadiusStyleValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BorderBottomLeftRadiusStyleValue
impl PartialOrd for BorderBottomLeftRadiusStyleValue
Source§impl<'a> Peek<'a> for BorderBottomLeftRadiusStyleValue
impl<'a> Peek<'a> for BorderBottomLeftRadiusStyleValue
Source§impl ToCursors for BorderBottomLeftRadiusStyleValue
impl ToCursors for BorderBottomLeftRadiusStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for BorderBottomLeftRadiusStyleValue
impl StructuralPartialEq for BorderBottomLeftRadiusStyleValue
Auto Trait Implementations§
impl Freeze for BorderBottomLeftRadiusStyleValue
impl RefUnwindSafe for BorderBottomLeftRadiusStyleValue
impl Send for BorderBottomLeftRadiusStyleValue
impl Sync for BorderBottomLeftRadiusStyleValue
impl Unpin for BorderBottomLeftRadiusStyleValue
impl UnwindSafe for BorderBottomLeftRadiusStyleValue
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