pub enum BlockStepAlignStyleValue {
Auto(Ident),
Center(Ident),
Start(Ident),
End(Ident),
}Expand description
Represents the style value for block-step-align as defined in css-rhythm-1.
The grammar is defined as:
auto | center | start | endVariants§
Trait Implementations§
Source§impl Clone for BlockStepAlignStyleValue
impl Clone for BlockStepAlignStyleValue
Source§fn clone(&self) -> BlockStepAlignStyleValue
fn clone(&self) -> BlockStepAlignStyleValue
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 BlockStepAlignStyleValue
impl Debug for BlockStepAlignStyleValue
Source§impl Hash for BlockStepAlignStyleValue
impl Hash for BlockStepAlignStyleValue
Source§impl Ord for BlockStepAlignStyleValue
impl Ord for BlockStepAlignStyleValue
Source§fn cmp(&self, other: &BlockStepAlignStyleValue) -> Ordering
fn cmp(&self, other: &BlockStepAlignStyleValue) -> 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 BlockStepAlignStyleValue
impl<'a> Parse<'a> for BlockStepAlignStyleValue
Source§impl PartialEq for BlockStepAlignStyleValue
impl PartialEq for BlockStepAlignStyleValue
Source§impl PartialOrd for BlockStepAlignStyleValue
impl PartialOrd for BlockStepAlignStyleValue
Source§impl<'a> Peek<'a> for BlockStepAlignStyleValue
impl<'a> Peek<'a> for BlockStepAlignStyleValue
Source§impl ToCursors for BlockStepAlignStyleValue
impl ToCursors for BlockStepAlignStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for BlockStepAlignStyleValue
impl StructuralPartialEq for BlockStepAlignStyleValue
Auto Trait Implementations§
impl Freeze for BlockStepAlignStyleValue
impl RefUnwindSafe for BlockStepAlignStyleValue
impl Send for BlockStepAlignStyleValue
impl Sync for BlockStepAlignStyleValue
impl Unpin for BlockStepAlignStyleValue
impl UnwindSafe for BlockStepAlignStyleValue
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