pub struct TextEmphasisSkipStyleValue {
pub spaces: Option<Ident>,
pub punctuation: Option<Ident>,
pub symbols: Option<Ident>,
pub narrow: Option<Ident>,
}Expand description
Represents the style value for text-emphasis-skip as defined in css-text-decor-4.
The grammar is defined as:
spaces || punctuation || symbols || narrowFields§
§spaces: Option<Ident>§punctuation: Option<Ident>§symbols: Option<Ident>§narrow: Option<Ident>Trait Implementations§
Source§impl Clone for TextEmphasisSkipStyleValue
impl Clone for TextEmphasisSkipStyleValue
Source§fn clone(&self) -> TextEmphasisSkipStyleValue
fn clone(&self) -> TextEmphasisSkipStyleValue
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 TextEmphasisSkipStyleValue
impl Debug for TextEmphasisSkipStyleValue
Source§impl Hash for TextEmphasisSkipStyleValue
impl Hash for TextEmphasisSkipStyleValue
Source§impl Ord for TextEmphasisSkipStyleValue
impl Ord for TextEmphasisSkipStyleValue
Source§fn cmp(&self, other: &TextEmphasisSkipStyleValue) -> Ordering
fn cmp(&self, other: &TextEmphasisSkipStyleValue) -> 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 TextEmphasisSkipStyleValue
impl<'a> Parse<'a> for TextEmphasisSkipStyleValue
Source§impl PartialOrd for TextEmphasisSkipStyleValue
impl PartialOrd for TextEmphasisSkipStyleValue
Source§impl<'a> Peek<'a> for TextEmphasisSkipStyleValue
impl<'a> Peek<'a> for TextEmphasisSkipStyleValue
Source§impl ToCursors for TextEmphasisSkipStyleValue
impl ToCursors for TextEmphasisSkipStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for TextEmphasisSkipStyleValue
impl StructuralPartialEq for TextEmphasisSkipStyleValue
Auto Trait Implementations§
impl Freeze for TextEmphasisSkipStyleValue
impl RefUnwindSafe for TextEmphasisSkipStyleValue
impl Send for TextEmphasisSkipStyleValue
impl Sync for TextEmphasisSkipStyleValue
impl Unpin for TextEmphasisSkipStyleValue
impl UnwindSafe for TextEmphasisSkipStyleValue
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