Struct style::counter_style::CounterStyleRuleData
source · 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: SourceLocation
Line 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 copy 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> 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