pub struct TerminateCommand {
pub actor_id: String,
}
Expand description
A command sent to a specific host to shut down a given actor
Fields§
§actor_id: String
Trait Implementations§
Source§impl Clone for TerminateCommand
impl Clone for TerminateCommand
Source§fn clone(&self) -> TerminateCommand
fn clone(&self) -> TerminateCommand
Returns a copy 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 moreSource§impl Debug for TerminateCommand
impl Debug for TerminateCommand
Source§impl<'de> Deserialize<'de> for TerminateCommand
impl<'de> Deserialize<'de> for TerminateCommand
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
Source§impl PartialEq for TerminateCommand
impl PartialEq for TerminateCommand
Source§impl Serialize for TerminateCommand
impl Serialize for TerminateCommand
impl StructuralPartialEq for TerminateCommand
Auto Trait Implementations§
impl Freeze for TerminateCommand
impl RefUnwindSafe for TerminateCommand
impl Send for TerminateCommand
impl Sync for TerminateCommand
impl Unpin for TerminateCommand
impl UnwindSafe for TerminateCommand
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