Struct num_format::utils::InfinityStr
source · pub struct InfinityStr<'a>(_);
Expand description
Simple wrapper type for a &str
to make sure its length is less than the maximum for
an infinity symbol (128 bytes).
Implementations§
source§impl<'a> InfinityStr<'a>
impl<'a> InfinityStr<'a>
sourcepub fn new(s: &'a str) -> Result<InfinityStr<'a>, Error>
pub fn new(s: &'a str) -> Result<InfinityStr<'a>, Error>
Constructs an InfinityStr
, ensuring that the length is less than the maximum for
an infinity symbol (128 bytes).
Errors
Returns an error if the provided &str
’s length is more than 128 bytes.
Trait Implementations§
source§impl<'a> AsRef<str> for InfinityStr<'a>
impl<'a> AsRef<str> for InfinityStr<'a>
source§impl<'a> Clone for InfinityStr<'a>
impl<'a> Clone for InfinityStr<'a>
source§fn clone(&self) -> InfinityStr<'a>
fn clone(&self) -> InfinityStr<'a>
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<'a> Debug for InfinityStr<'a>
impl<'a> Debug for InfinityStr<'a>
source§impl<'a> Display for InfinityStr<'a>
impl<'a> Display for InfinityStr<'a>
source§impl<'a> Hash for InfinityStr<'a>
impl<'a> Hash for InfinityStr<'a>
source§impl<'a> Ord for InfinityStr<'a>
impl<'a> Ord for InfinityStr<'a>
source§fn cmp(&self, other: &InfinityStr<'a>) -> Ordering
fn cmp(&self, other: &InfinityStr<'a>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a> PartialEq<InfinityStr<'a>> for InfinityStr<'a>
impl<'a> PartialEq<InfinityStr<'a>> for InfinityStr<'a>
source§fn eq(&self, other: &InfinityStr<'a>) -> bool
fn eq(&self, other: &InfinityStr<'a>) -> bool
source§impl<'a> PartialOrd<InfinityStr<'a>> for InfinityStr<'a>
impl<'a> PartialOrd<InfinityStr<'a>> for InfinityStr<'a>
source§fn partial_cmp(&self, other: &InfinityStr<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &InfinityStr<'a>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more