pub enum ActivityBrokeringError {
MissingObject,
MissingActor,
UnrecognizedType,
Deref(DerefError),
Database(Error),
NonActorAddress(String),
MissingInbox(String),
InboxActorDeref(DerefError),
}Expand description
Represents an issue with the values in an Activity during the receive or delivery of it.
Variants
MissingObject
MissingActor
UnrecognizedType
Deref(DerefError)
Database(Error)
NonActorAddress(String)
MissingInbox(String)
InboxActorDeref(DerefError)
Trait Implementations
sourceimpl Debug for ActivityBrokeringError
impl Debug for ActivityBrokeringError
sourceimpl Display for ActivityBrokeringError
impl Display for ActivityBrokeringError
sourceimpl Error for ActivityBrokeringError
impl Error for ActivityBrokeringError
sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<DerefError> for ActivityBrokeringError
impl From<DerefError> for ActivityBrokeringError
sourcefn from(source: DerefError) -> Self
fn from(source: DerefError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ActivityBrokeringError
impl !Send for ActivityBrokeringError
impl !Sync for ActivityBrokeringError
impl Unpin for ActivityBrokeringError
impl !UnwindSafe for ActivityBrokeringError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more