pub struct UnsupportedStatusCode(/* private fields */);Expand description
Error type for an unsupported error type
Trait Implementations§
Source§impl Clone for UnsupportedStatusCode
impl Clone for UnsupportedStatusCode
Source§fn clone(&self) -> UnsupportedStatusCode
fn clone(&self) -> UnsupportedStatusCode
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 UnsupportedStatusCode
impl Debug for UnsupportedStatusCode
Source§impl Display for UnsupportedStatusCode
impl Display for UnsupportedStatusCode
Source§impl Error for UnsupportedStatusCode
impl Error for UnsupportedStatusCode
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 From<UnsupportedStatusCode> for TrackError
impl From<UnsupportedStatusCode> for TrackError
Source§fn from(f: UnsupportedStatusCode) -> Self
fn from(f: UnsupportedStatusCode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UnsupportedStatusCode
impl PartialEq for UnsupportedStatusCode
impl Copy for UnsupportedStatusCode
impl StructuralPartialEq for UnsupportedStatusCode
Auto Trait Implementations§
impl Freeze for UnsupportedStatusCode
impl RefUnwindSafe for UnsupportedStatusCode
impl Send for UnsupportedStatusCode
impl Sync for UnsupportedStatusCode
impl Unpin for UnsupportedStatusCode
impl UnwindSafe for UnsupportedStatusCode
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