pub enum SendingError {
WatcherDosntHaveOobi {
missing: IdentifierPrefix,
},
ActorInternalError(ActorError),
TransportError(TransportError),
OobiError(OobiRetrieveError),
}Variants§
WatcherDosntHaveOobi
Fields
§
missing: IdentifierPrefixActorInternalError(ActorError)
TransportError(TransportError)
OobiError(OobiRetrieveError)
Trait Implementations§
source§impl Debug for SendingError
impl Debug for SendingError
source§impl Display for SendingError
impl Display for SendingError
source§impl Error for SendingError
impl Error for SendingError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<ActorError> for SendingError
impl From<ActorError> for SendingError
source§fn from(source: ActorError) -> Self
fn from(source: ActorError) -> Self
Converts to this type from the input type.
source§impl From<OobiRetrieveError> for SendingError
impl From<OobiRetrieveError> for SendingError
source§fn from(source: OobiRetrieveError) -> Self
fn from(source: OobiRetrieveError) -> Self
Converts to this type from the input type.
source§impl From<SendingError> for BroadcastingError
impl From<SendingError> for BroadcastingError
source§fn from(source: SendingError) -> Self
fn from(source: SendingError) -> Self
Converts to this type from the input type.
source§impl From<SendingError> for ControllerError
impl From<SendingError> for ControllerError
source§fn from(source: SendingError) -> Self
fn from(source: SendingError) -> Self
Converts to this type from the input type.
source§impl From<SendingError> for MechanicsError
impl From<SendingError> for MechanicsError
source§fn from(source: SendingError) -> Self
fn from(source: SendingError) -> Self
Converts to this type from the input type.
source§impl From<SendingError> for WatcherResponseError
impl From<SendingError> for WatcherResponseError
source§fn from(source: SendingError) -> Self
fn from(source: SendingError) -> Self
Converts to this type from the input type.
source§impl From<TransportError> for SendingError
impl From<TransportError> for SendingError
source§fn from(value: TransportError) -> Self
fn from(value: TransportError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SendingError
impl RefUnwindSafe for SendingError
impl Send for SendingError
impl Sync for SendingError
impl Unpin for SendingError
impl UnwindSafe for SendingError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more