pub enum UnaParseError {
InvalidLength {
expected: usize,
actual: usize,
},
InvalidPrefix,
}Expand description
Error when parsing a UNA service string advice segment.
Variants§
Trait Implementations§
Source§impl Clone for UnaParseError
impl Clone for UnaParseError
Source§fn clone(&self) -> UnaParseError
fn clone(&self) -> UnaParseError
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 UnaParseError
impl Debug for UnaParseError
Source§impl Display for UnaParseError
impl Display for UnaParseError
Source§impl Error for UnaParseError
impl Error for UnaParseError
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 UnaParseError
impl PartialEq for UnaParseError
impl Eq for UnaParseError
impl StructuralPartialEq for UnaParseError
Auto Trait Implementations§
impl Freeze for UnaParseError
impl RefUnwindSafe for UnaParseError
impl Send for UnaParseError
impl Sync for UnaParseError
impl Unpin for UnaParseError
impl UnsafeUnpin for UnaParseError
impl UnwindSafe for UnaParseError
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