pub enum HubError {
Transport(String),
Status(String),
Decode(String),
}Expand description
Compatibility alias retained from earlier SDKs.
Variants§
Trait Implementations§
Source§impl Error for HubError
impl Error for HubError
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()
Auto Trait Implementations§
impl Freeze for HubError
impl RefUnwindSafe for HubError
impl Send for HubError
impl Sync for HubError
impl Unpin for HubError
impl UnsafeUnpin for HubError
impl UnwindSafe for HubError
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