pub struct CornerBottomRightShapeStyleValue(pub CornerShapeValue);Expand description
Represents the style value for corner-bottom-right-shape as defined in css-borders-4.
The corner-shape CSS property sets the shape of an element’s corners when using border-radius, allowing for shapes other than rounded corners. For example, corner-shape: squircle is a shape in between a square and rounded corner.
The grammar is defined as:
<corner-shape-value>Tuple Fields§
§0: CornerShapeValueTrait Implementations§
Source§impl Clone for CornerBottomRightShapeStyleValue
impl Clone for CornerBottomRightShapeStyleValue
Source§fn clone(&self) -> CornerBottomRightShapeStyleValue
fn clone(&self) -> CornerBottomRightShapeStyleValue
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 CornerBottomRightShapeStyleValue
impl Ord for CornerBottomRightShapeStyleValue
Source§fn cmp(&self, other: &CornerBottomRightShapeStyleValue) -> Ordering
fn cmp(&self, other: &CornerBottomRightShapeStyleValue) -> 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 CornerBottomRightShapeStyleValue
impl<'a> Parse<'a> for CornerBottomRightShapeStyleValue
Source§impl PartialEq for CornerBottomRightShapeStyleValue
impl PartialEq for CornerBottomRightShapeStyleValue
Source§fn eq(&self, other: &CornerBottomRightShapeStyleValue) -> bool
fn eq(&self, other: &CornerBottomRightShapeStyleValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CornerBottomRightShapeStyleValue
impl PartialOrd for CornerBottomRightShapeStyleValue
Source§impl<'a> Peek<'a> for CornerBottomRightShapeStyleValue
impl<'a> Peek<'a> for CornerBottomRightShapeStyleValue
Source§impl ToCursors for CornerBottomRightShapeStyleValue
impl ToCursors for CornerBottomRightShapeStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for CornerBottomRightShapeStyleValue
impl StructuralPartialEq for CornerBottomRightShapeStyleValue
Auto Trait Implementations§
impl Freeze for CornerBottomRightShapeStyleValue
impl RefUnwindSafe for CornerBottomRightShapeStyleValue
impl Send for CornerBottomRightShapeStyleValue
impl Sync for CornerBottomRightShapeStyleValue
impl Unpin for CornerBottomRightShapeStyleValue
impl UnwindSafe for CornerBottomRightShapeStyleValue
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