pub enum BackendPipelineWireAdapterError<Error> {
Middleware(Error),
Illegal(BackendMessage),
}Expand description
Failure from backend wire middleware adapted to typed pipeline dispatch.
Variants§
Middleware(Error)
The wrapped middleware rejected a message.
Illegal(BackendMessage)
The wrapped middleware returned a message illegal in the selected phase.
Trait Implementations§
Auto Trait Implementations§
impl<Error> !Freeze for BackendPipelineWireAdapterError<Error>
impl<Error> RefUnwindSafe for BackendPipelineWireAdapterError<Error>where
Error: RefUnwindSafe,
impl<Error> Send for BackendPipelineWireAdapterError<Error>where
Error: Send,
impl<Error> Sync for BackendPipelineWireAdapterError<Error>where
Error: Sync,
impl<Error> Unpin for BackendPipelineWireAdapterError<Error>where
Error: Unpin,
impl<Error> UnsafeUnpin for BackendPipelineWireAdapterError<Error>where
Error: UnsafeUnpin,
impl<Error> UnwindSafe for BackendPipelineWireAdapterError<Error>where
Error: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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