Struct num_format::CustomFormat [−][src]
Type for representing your own custom formats. Implements Format
.
Example
use num_format::{Buffer, Error, CustomFormat, Grouping}; fn main() -> Result<(), Error> { let format = CustomFormat::builder() .grouping(Grouping::Indian) .minus_sign("🙌") .separator("😀") .build()?; let mut buf = Buffer::new(); buf.write_formatted(&(-1000000), &format); assert_eq!("🙌10😀00😀000", buf.as_str()); Ok(()) }
Implementations
impl CustomFormat
[src]
pub fn builder() -> CustomFormatBuilder
[src]
Constructs a CustomFormatBuilder
.
pub fn into_builder(self) -> CustomFormatBuilder
[src]
Turns self
into a CustomFormatBuilder
.
pub fn decimal(&self) -> &str
[src]
Returns this format’s representation of decimal points.
pub fn grouping(&self) -> Grouping
[src]
pub fn infinity(&self) -> &str
[src]
Returns this format’s representation of infinity.
pub fn minus_sign(&self) -> &str
[src]
Returns this format’s representation of minus signs.
pub fn nan(&self) -> &str
[src]
Returns this format’s representation of NaN.
pub fn plus_sign(&self) -> &str
[src]
Returns this format’s representation of plus signs.
pub fn separator(&self) -> &str
[src]
Returns this format’s representation of separators.
Trait Implementations
impl Clone for CustomFormat
[src]
fn clone(&self) -> CustomFormat
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for CustomFormat
[src]
impl Default for CustomFormat
[src]
impl Eq for CustomFormat
[src]
impl Format for CustomFormat
[src]
fn decimal(&self) -> DecimalStr<'_>
[src]
fn grouping(&self) -> Grouping
[src]
fn infinity(&self) -> InfinityStr<'_>
[src]
fn minus_sign(&self) -> MinusSignStr<'_>
[src]
fn nan(&self) -> NanStr<'_>
[src]
fn plus_sign(&self) -> PlusSignStr<'_>
[src]
fn separator(&self) -> SeparatorStr<'_>
[src]
impl From<CustomFormat> for CustomFormatBuilder
[src]
fn from(format: CustomFormat) -> Self
[src]
impl From<Locale> for CustomFormat
[src]
impl Hash for CustomFormat
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<CustomFormat> for CustomFormat
[src]
fn eq(&self, other: &CustomFormat) -> bool
[src]
fn ne(&self, other: &CustomFormat) -> bool
[src]
impl StructuralEq for CustomFormat
[src]
impl StructuralPartialEq for CustomFormat
[src]
Auto Trait Implementations
impl RefUnwindSafe for CustomFormat
impl Send for CustomFormat
impl Sync for CustomFormat
impl Unpin for CustomFormat
impl UnwindSafe for CustomFormat
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,