Struct num_format::utils::PlusSignStr
source · pub struct PlusSignStr<'a>(_);
Expand description
Simple wrapper type for a &str
to make sure its length is less than the maximum for
a plus sign (8 bytes).
Implementations§
source§impl<'a> PlusSignStr<'a>
impl<'a> PlusSignStr<'a>
sourcepub fn new(s: &'a str) -> Result<PlusSignStr<'a>, Error>
pub fn new(s: &'a str) -> Result<PlusSignStr<'a>, Error>
Constructs an PlusSignStr
, ensuring that the length is less than the maximum for
a plus sign (8 bytes).
Errors
Returns an error if the provided &str
’s length is more than 8 bytes.
Trait Implementations§
source§impl<'a> AsRef<str> for PlusSignStr<'a>
impl<'a> AsRef<str> for PlusSignStr<'a>
source§impl<'a> Clone for PlusSignStr<'a>
impl<'a> Clone for PlusSignStr<'a>
source§fn clone(&self) -> PlusSignStr<'a>
fn clone(&self) -> PlusSignStr<'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 PlusSignStr<'a>
impl<'a> Debug for PlusSignStr<'a>
source§impl<'a> Display for PlusSignStr<'a>
impl<'a> Display for PlusSignStr<'a>
source§impl<'a> Hash for PlusSignStr<'a>
impl<'a> Hash for PlusSignStr<'a>
source§impl<'a> Ord for PlusSignStr<'a>
impl<'a> Ord for PlusSignStr<'a>
source§fn cmp(&self, other: &PlusSignStr<'a>) -> Ordering
fn cmp(&self, other: &PlusSignStr<'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<PlusSignStr<'a>> for PlusSignStr<'a>
impl<'a> PartialEq<PlusSignStr<'a>> for PlusSignStr<'a>
source§fn eq(&self, other: &PlusSignStr<'a>) -> bool
fn eq(&self, other: &PlusSignStr<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> PartialOrd<PlusSignStr<'a>> for PlusSignStr<'a>
impl<'a> PartialOrd<PlusSignStr<'a>> for PlusSignStr<'a>
source§fn partial_cmp(&self, other: &PlusSignStr<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &PlusSignStr<'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 moreimpl<'a> Eq for PlusSignStr<'a>
impl<'a> StructuralEq for PlusSignStr<'a>
impl<'a> StructuralPartialEq for PlusSignStr<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for PlusSignStr<'a>
impl<'a> Send for PlusSignStr<'a>
impl<'a> Sync for PlusSignStr<'a>
impl<'a> Unpin for PlusSignStr<'a>
impl<'a> UnwindSafe for PlusSignStr<'a>
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<S> ParseFormatted for Swhere
S: AsRef<str>,
impl<S> ParseFormatted for Swhere S: AsRef<str>,
source§fn parse_formatted<F, N>(&self, format: &F) -> Result<N, Error>where
F: Format,
N: FromFormattedStr,
fn parse_formatted<F, N>(&self, format: &F) -> Result<N, Error>where F: Format, N: FromFormattedStr,
Converts
self
(typically a formatted string) into a number (see Examples above).