Struct EndpointError
pub struct EndpointError { /* private fields */ }Expand description
Domain error for endpoint progress.
The API shape stays on flow/send/recv/offer/decode; this error records
which operation failed and where the public operation was started, so callers
can keep using plain ? without wrappers. The diagnostic kind is deliberately
private: application code should not match endpoint failures to continue the
same generation on an alternate route.
Implementations§
Trait Implementations§
§impl Clone for EndpointError
impl Clone for EndpointError
§fn clone(&self) -> EndpointError
fn clone(&self) -> EndpointError
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 more§impl Debug for EndpointError
impl Debug for EndpointError
impl Copy for EndpointError
Auto Trait Implementations§
impl Freeze for EndpointError
impl RefUnwindSafe for EndpointError
impl Send for EndpointError
impl Sync for EndpointError
impl Unpin for EndpointError
impl UnsafeUnpin for EndpointError
impl UnwindSafe for EndpointError
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