Enum seec_channel::CommunicationError
source · pub enum CommunicationError {
BaseSend(SendError<()>),
BaseRecv(RecvError),
Send(SendError<()>),
Recv(RecvError),
Multi(Error),
RemoteClosed,
UnexpectedMessage,
MultiSubChannel(u32, Box<CommunicationError>),
}
Variants§
BaseSend(SendError<()>)
BaseRecv(RecvError)
Send(SendError<()>)
Recv(RecvError)
Multi(Error)
RemoteClosed
UnexpectedMessage
MultiSubChannel(u32, Box<CommunicationError>)
Trait Implementations§
source§impl Debug for CommunicationError
impl Debug for CommunicationError
source§impl Display for CommunicationError
impl Display for CommunicationError
source§impl Error for CommunicationError
impl Error for CommunicationError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<Error> for CommunicationError
impl From<Error> for CommunicationError
source§impl From<RecvError> for CommunicationError
impl From<RecvError> for CommunicationError
source§impl From<RecvError> for CommunicationError
impl From<RecvError> for CommunicationError
source§impl<T> From<SendError<T>> for CommunicationError
impl<T> From<SendError<T>> for CommunicationError
Auto Trait Implementations§
impl Freeze for CommunicationError
impl !RefUnwindSafe for CommunicationError
impl Send for CommunicationError
impl Sync for CommunicationError
impl Unpin for CommunicationError
impl !UnwindSafe for CommunicationError
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