pub struct UpgradeIoError {
pub code: String,
pub message: String,
}Expand description
A transport error after an HTTP connection has switched protocols.
Fields§
§code: String§message: StringImplementations§
Trait Implementations§
Source§impl Clone for UpgradeIoError
impl Clone for UpgradeIoError
Source§fn clone(&self) -> UpgradeIoError
fn clone(&self) -> UpgradeIoError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpgradeIoError
impl Debug for UpgradeIoError
Source§impl Display for UpgradeIoError
impl Display for UpgradeIoError
impl Eq for UpgradeIoError
Source§impl Error for UpgradeIoError
impl Error for UpgradeIoError
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 UpgradeIoError
impl PartialEq for UpgradeIoError
impl StructuralPartialEq for UpgradeIoError
Auto Trait Implementations§
impl Freeze for UpgradeIoError
impl RefUnwindSafe for UpgradeIoError
impl Send for UpgradeIoError
impl Sync for UpgradeIoError
impl Unpin for UpgradeIoError
impl UnsafeUnpin for UpgradeIoError
impl UnwindSafe for UpgradeIoError
Blanket Implementations§
Source§impl<T> BackgroundExt for T
impl<T> BackgroundExt for T
fn background(self, task: BackgroundTask) -> Background<Self>
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