Enum fmt_macros::Count
[−]
[src]
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A count is used for the precision and width parameters of an integer, and can reference either an argument or a literal integer.
Variants
CountIs(usize)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
The count is specified explicitly.
CountIsName(&'a str)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
The count is specified by the argument with the given name.
CountIsParam(usize)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
The count is specified by the argument at the given index.
CountImplied🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
The count is implied and cannot be explicitly specified.
Trait Implementations
impl<'a> Copy for Count<'a>[src]
impl<'a> Copy for Count<'a>impl<'a> Clone for Count<'a>[src]
impl<'a> Clone for Count<'a>fn clone(&self) -> Count<'a>[src]
fn clone(&self) -> Count<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<'a> PartialEq for Count<'a>[src]
impl<'a> PartialEq for Count<'a>