pub struct MarginBlockEndStyleValue(pub MarginTopStyleValue);Expand description
Represents the style value for margin-block-end as defined in css-logical-1.
CSS logical properties control borders, size, margin, and padding with directions and dimensions relative to the writing mode. For example, in a left to right, top to bottom writing mode, block-end refers to the bottom. Also known as flow relative.
The grammar is defined as:
<'margin-top'>Tuple Fields§
§0: MarginTopStyleValueTrait Implementations§
Source§impl Clone for MarginBlockEndStyleValue
impl Clone for MarginBlockEndStyleValue
Source§fn clone(&self) -> MarginBlockEndStyleValue
fn clone(&self) -> MarginBlockEndStyleValue
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 MarginBlockEndStyleValue
impl Debug for MarginBlockEndStyleValue
Source§impl Hash for MarginBlockEndStyleValue
impl Hash for MarginBlockEndStyleValue
Source§impl Ord for MarginBlockEndStyleValue
impl Ord for MarginBlockEndStyleValue
Source§fn cmp(&self, other: &MarginBlockEndStyleValue) -> Ordering
fn cmp(&self, other: &MarginBlockEndStyleValue) -> 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 MarginBlockEndStyleValue
impl<'a> Parse<'a> for MarginBlockEndStyleValue
Source§impl PartialEq for MarginBlockEndStyleValue
impl PartialEq for MarginBlockEndStyleValue
Source§impl PartialOrd for MarginBlockEndStyleValue
impl PartialOrd for MarginBlockEndStyleValue
Source§impl<'a> Peek<'a> for MarginBlockEndStyleValue
impl<'a> Peek<'a> for MarginBlockEndStyleValue
Source§impl ToCursors for MarginBlockEndStyleValue
impl ToCursors for MarginBlockEndStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for MarginBlockEndStyleValue
impl StructuralPartialEq for MarginBlockEndStyleValue
Auto Trait Implementations§
impl Freeze for MarginBlockEndStyleValue
impl RefUnwindSafe for MarginBlockEndStyleValue
impl Send for MarginBlockEndStyleValue
impl Sync for MarginBlockEndStyleValue
impl Unpin for MarginBlockEndStyleValue
impl UnwindSafe for MarginBlockEndStyleValue
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