pub enum StringConversionFailed {
Range(ConversionFailed),
EmptyInput,
NotOctal(char),
}
Variants§
Trait Implementations§
Source§impl Clone for StringConversionFailed
impl Clone for StringConversionFailed
Source§fn clone(&self) -> StringConversionFailed
fn clone(&self) -> StringConversionFailed
Returns a duplicate 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 Debug for StringConversionFailed
impl Debug for StringConversionFailed
Source§impl Display for StringConversionFailed
impl Display for StringConversionFailed
Source§impl PartialEq for StringConversionFailed
impl PartialEq for StringConversionFailed
impl Copy for StringConversionFailed
impl Eq for StringConversionFailed
impl StructuralPartialEq for StringConversionFailed
Auto Trait Implementations§
impl Freeze for StringConversionFailed
impl RefUnwindSafe for StringConversionFailed
impl Send for StringConversionFailed
impl Sync for StringConversionFailed
impl Unpin for StringConversionFailed
impl UnwindSafe for StringConversionFailed
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.