pub enum UFromStrErr {
InvalidChar(char),
Overflow,
Empty,
}Variants§
Trait Implementations§
Source§impl Clone for UFromStrErr
impl Clone for UFromStrErr
Source§fn clone(&self) -> UFromStrErr
fn clone(&self) -> UFromStrErr
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 UFromStrErr
impl Debug for UFromStrErr
Source§impl Display for UFromStrErr
impl Display for UFromStrErr
Source§impl Error for UFromStrErr
impl Error for UFromStrErr
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for UFromStrErr
impl PartialEq for UFromStrErr
impl StructuralPartialEq for UFromStrErr
Auto Trait Implementations§
impl Freeze for UFromStrErr
impl RefUnwindSafe for UFromStrErr
impl Send for UFromStrErr
impl Sync for UFromStrErr
impl Unpin for UFromStrErr
impl UnwindSafe for UFromStrErr
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