pub struct StopTaskResult {
pub task_id: String,
pub task_type: String,
pub command: Option<String>,
}Expand description
Result of a successful stop task operation.
Fields§
§task_id: String§task_type: String§command: Option<String>Trait Implementations§
Source§impl Clone for StopTaskResult
impl Clone for StopTaskResult
Source§fn clone(&self) -> StopTaskResult
fn clone(&self) -> StopTaskResult
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 moreSource§impl Debug for StopTaskResult
impl Debug for StopTaskResult
Source§impl<'de> Deserialize<'de> for StopTaskResult
impl<'de> Deserialize<'de> for StopTaskResult
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 StopTaskResult
impl RefUnwindSafe for StopTaskResult
impl Send for StopTaskResult
impl Sync for StopTaskResult
impl Unpin for StopTaskResult
impl UnsafeUnpin for StopTaskResult
impl UnwindSafe for StopTaskResult
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