pub enum ActorRuntime {
NotConfigured {
component: String,
},
NotFound {
resource: String,
id: String,
},
NotRegistered {
actor_name: String,
},
MissingInput,
InvalidOperation {
operation: String,
reason: String,
},
Panicked {
operation: String,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ActorRuntime
impl Clone for ActorRuntime
Source§fn clone(&self) -> ActorRuntime
fn clone(&self) -> ActorRuntime
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActorRuntime
impl Debug for ActorRuntime
Source§impl<'de> Deserialize<'de> for ActorRuntime
impl<'de> Deserialize<'de> for ActorRuntime
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActorRuntime
impl RefUnwindSafe for ActorRuntime
impl Send for ActorRuntime
impl Sync for ActorRuntime
impl Unpin for ActorRuntime
impl UnsafeUnpin for ActorRuntime
impl UnwindSafe for ActorRuntime
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