pub struct CounterStyleRuleData {Show 13 fields
    name: CustomIdent,
    generation: Wrapping<u32>,
    system: Option<System>,
    negative: Option<Negative>,
    prefix: Option<Symbol>,
    suffix: Option<Symbol>,
    range: Option<CounterRanges>,
    pad: Option<Pad>,
    fallback: Option<Fallback>,
    symbols: Option<Symbols>,
    additive_symbols: Option<AdditiveSymbols>,
    speak_as: Option<SpeakAs>,
    pub source_location: SourceLocation,
}Expand description
An @counter-style rule
Fields§
§name: CustomIdent§generation: Wrapping<u32>§system: Option<System>§negative: Option<Negative>§prefix: Option<Symbol>§suffix: Option<Symbol>§range: Option<CounterRanges>§pad: Option<Pad>§fallback: Option<Fallback>§symbols: Option<Symbols>§additive_symbols: Option<AdditiveSymbols>§speak_as: Option<SpeakAs>§source_location: SourceLocationLine and column of the @counter-style rule source code.
Implementations§
Source§impl CounterStyleRuleData
 
impl CounterStyleRuleData
fn empty(name: CustomIdent, source_location: SourceLocation) -> Self
Sourcepub fn range(&self) -> Option<&CounterRanges>
 
pub fn range(&self) -> Option<&CounterRanges>
Sourcepub fn additive_symbols(&self) -> Option<&AdditiveSymbols>
 
pub fn additive_symbols(&self) -> Option<&AdditiveSymbols>
Sourcepub fn set_system(&mut self, value: System) -> bool
 
pub fn set_system(&mut self, value: System) -> bool
Sourcepub fn set_negative(&mut self, value: Negative) -> bool
 
pub fn set_negative(&mut self, value: Negative) -> bool
Sourcepub fn set_prefix(&mut self, value: Symbol) -> bool
 
pub fn set_prefix(&mut self, value: Symbol) -> bool
Sourcepub fn set_suffix(&mut self, value: Symbol) -> bool
 
pub fn set_suffix(&mut self, value: Symbol) -> bool
Sourcepub fn set_range(&mut self, value: CounterRanges) -> bool
 
pub fn set_range(&mut self, value: CounterRanges) -> bool
Sourcepub fn set_fallback(&mut self, value: Fallback) -> bool
 
pub fn set_fallback(&mut self, value: Fallback) -> bool
Sourcepub fn set_symbols(&mut self, value: Symbols) -> bool
 
pub fn set_symbols(&mut self, value: Symbols) -> bool
Sourcepub fn set_additive_symbols(&mut self, value: AdditiveSymbols) -> bool
 
pub fn set_additive_symbols(&mut self, value: AdditiveSymbols) -> bool
Sourcepub fn set_speak_as(&mut self, value: SpeakAs) -> bool
 
pub fn set_speak_as(&mut self, value: SpeakAs) -> bool
Source§impl CounterStyleRuleData
 
impl CounterStyleRuleData
Sourcefn check_system(&self, value: &System) -> bool
 
fn check_system(&self, value: &System) -> bool
Check that the system is effectively not changed. Only params of system descriptor is changeable.
fn check_symbols(&self, value: &Symbols) -> bool
fn check_additive_symbols(&self, _value: &AdditiveSymbols) -> bool
Source§impl CounterStyleRuleData
 
impl CounterStyleRuleData
Sourcepub fn name(&self) -> &CustomIdent
 
pub fn name(&self) -> &CustomIdent
Get the name of the counter style rule.
Sourcepub fn set_name(&mut self, name: CustomIdent)
 
pub fn set_name(&mut self, name: CustomIdent)
Set the name of the counter style rule. Caller must ensure that the name is valid.
Sourcepub fn generation(&self) -> u32
 
pub fn generation(&self) -> u32
Get the current generation of the counter style rule.
Sourcepub fn resolved_system(&self) -> &System
 
pub fn resolved_system(&self) -> &System
Get the system of this counter style rule, default to
symbolic if not specified.
Trait Implementations§
Source§impl Clone for CounterStyleRuleData
 
impl Clone for CounterStyleRuleData
Source§fn clone(&self) -> CounterStyleRuleData
 
fn clone(&self) -> CounterStyleRuleData
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 CounterStyleRuleData
 
impl Debug for CounterStyleRuleData
Source§impl ToCssWithGuard for CounterStyleRuleData
 
impl ToCssWithGuard for CounterStyleRuleData
Source§fn to_css(
    &self,
    _guard: &SharedRwLockReadGuard<'_>,
    dest: &mut CssStringWriter,
) -> Result
 
fn to_css( &self, _guard: &SharedRwLockReadGuard<'_>, dest: &mut CssStringWriter, ) -> Result
Serialize 
self in CSS syntax, writing to dest, using the given lock guard.Source§fn to_css_string(&self, guard: &SharedRwLockReadGuard<'_>) -> CssString
 
fn to_css_string(&self, guard: &SharedRwLockReadGuard<'_>) -> CssString
Serialize 
self in CSS syntax using the given lock guard and return a string. Read moreSource§impl ToShmem for CounterStyleRuleData
 
impl ToShmem for CounterStyleRuleData
Auto Trait Implementations§
impl Freeze for CounterStyleRuleData
impl RefUnwindSafe for CounterStyleRuleData
impl Send for CounterStyleRuleData
impl Sync for CounterStyleRuleData
impl Unpin for CounterStyleRuleData
impl UnwindSafe for CounterStyleRuleData
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> MaybeBoxed<Box<T>> for T
 
impl<T> MaybeBoxed<Box<T>> for T
Source§fn maybe_boxed(self) -> Box<T>
 
fn maybe_boxed(self) -> Box<T>
Convert
Source§impl<T> MaybeBoxed<T> for T
 
impl<T> MaybeBoxed<T> for T
Source§fn maybe_boxed(self) -> T
 
fn maybe_boxed(self) -> T
Convert