pub struct CancelRunResponse {
pub cancelled: bool,
pub run_id: String,
}Expand description
CancelRunResponse model.
Fields§
§cancelled: bool§run_id: StringTrait Implementations§
Source§impl Clone for CancelRunResponse
impl Clone for CancelRunResponse
Source§fn clone(&self) -> CancelRunResponse
fn clone(&self) -> CancelRunResponse
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 CancelRunResponse
impl Debug for CancelRunResponse
Source§impl Default for CancelRunResponse
impl Default for CancelRunResponse
Source§fn default() -> CancelRunResponse
fn default() -> CancelRunResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CancelRunResponse
impl<'de> Deserialize<'de> for CancelRunResponse
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 CancelRunResponse
impl PartialEq for CancelRunResponse
Source§impl Serialize for CancelRunResponse
impl Serialize for CancelRunResponse
impl StructuralPartialEq for CancelRunResponse
Auto Trait Implementations§
impl Freeze for CancelRunResponse
impl RefUnwindSafe for CancelRunResponse
impl Send for CancelRunResponse
impl Sync for CancelRunResponse
impl Unpin for CancelRunResponse
impl UnsafeUnpin for CancelRunResponse
impl UnwindSafe for CancelRunResponse
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