pub enum TransceiverError {
Protobuf(ProtobufError),
Socket(Error),
ResponseHasError(String),
}
Variants§
Trait Implementations§
Source§impl Debug for TransceiverError
impl Debug for TransceiverError
Source§impl From<Error> for TransceiverError
impl From<Error> for TransceiverError
Source§impl From<ProtobufError> for TransceiverError
impl From<ProtobufError> for TransceiverError
Source§fn from(i: ProtobufError) -> Self
fn from(i: ProtobufError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransceiverError
impl !RefUnwindSafe for TransceiverError
impl Send for TransceiverError
impl Sync for TransceiverError
impl Unpin for TransceiverError
impl !UnwindSafe for TransceiverError
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