pub enum EndpointHandleInvocationError {
Domain(HandleError),
Runtime(RuntimeFailure),
}Variants§
Domain(HandleError)
Runtime(RuntimeFailure)
Trait Implementations§
Source§impl Clone for EndpointHandleInvocationError
impl Clone for EndpointHandleInvocationError
Source§fn clone(&self) -> EndpointHandleInvocationError
fn clone(&self) -> EndpointHandleInvocationError
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 From<EndpointHandleInvocationError> for ExtractorRejection
impl From<EndpointHandleInvocationError> for ExtractorRejection
Source§fn from(error: EndpointHandleInvocationError) -> Self
fn from(error: EndpointHandleInvocationError) -> Self
Converts to this type from the input type.
Source§impl From<ResponseBuildError> for EndpointHandleInvocationError
impl From<ResponseBuildError> for EndpointHandleInvocationError
Source§fn from(error: ResponseBuildError) -> Self
fn from(error: ResponseBuildError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for EndpointHandleInvocationError
Auto Trait Implementations§
impl Freeze for EndpointHandleInvocationError
impl RefUnwindSafe for EndpointHandleInvocationError
impl Send for EndpointHandleInvocationError
impl Sync for EndpointHandleInvocationError
impl Unpin for EndpointHandleInvocationError
impl UnsafeUnpin for EndpointHandleInvocationError
impl UnwindSafe for EndpointHandleInvocationError
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