pub enum SpawnResponse {
Success {
request_id: String,
actor_id: ActorId,
},
Failure {
request_id: String,
error: String,
},
}Expand description
Response to a spawn request.
Variants§
Trait Implementations§
Source§impl Clone for SpawnResponse
impl Clone for SpawnResponse
Source§fn clone(&self) -> SpawnResponse
fn clone(&self) -> SpawnResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SpawnResponse
impl RefUnwindSafe for SpawnResponse
impl Send for SpawnResponse
impl Sync for SpawnResponse
impl Unpin for SpawnResponse
impl UnsafeUnpin for SpawnResponse
impl UnwindSafe for SpawnResponse
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