pub struct Number {Show 13 fields
pub value: Option<Expression>,
pub select: Option<Expression>,
pub level: Option<NumberLevel>,
pub count: Option<Pattern>,
pub from: Option<Pattern>,
pub format: Option<ValueTemplate<String>>,
pub lang: Option<ValueTemplate<Language>>,
pub letter_value: Option<ValueTemplate<LetterValue>>,
pub ordinal: Option<ValueTemplate<String>>,
pub start_at: Option<ValueTemplate<String>>,
pub grouping_separator: Option<ValueTemplate<char>>,
pub grouping_size: Option<ValueTemplate<usize>>,
pub span: Span,
}Fields§
§value: Option<Expression>§select: Option<Expression>§level: Option<NumberLevel>§count: Option<Pattern>§from: Option<Pattern>§format: Option<ValueTemplate<String>>§lang: Option<ValueTemplate<Language>>§letter_value: Option<ValueTemplate<LetterValue>>§ordinal: Option<ValueTemplate<String>>§start_at: Option<ValueTemplate<String>>§grouping_separator: Option<ValueTemplate<char>>§grouping_size: Option<ValueTemplate<usize>>§span: SpanTrait Implementations§
Source§impl From<Number> for SequenceConstructorItem
impl From<Number> for SequenceConstructorItem
impl Eq for Number
impl StructuralPartialEq for Number
Auto Trait Implementations§
impl Freeze for Number
impl RefUnwindSafe for Number
impl Send for Number
impl Sync for Number
impl Unpin for Number
impl UnwindSafe for Number
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 more