pub struct StopResponse {
pub run_id: String,
pub success: bool,
}Expand description
StopResponse
JSON schema
{
"type": "object",
"required": [
"runId",
"success"
],
"properties": {
"runId": {
"type": "string"
},
"success": {
"type": "boolean"
}
}
}Fields§
§run_id: String§success: boolImplementations§
Source§impl StopResponse
impl StopResponse
pub fn builder() -> StopResponse
Trait Implementations§
Source§impl Clone for StopResponse
impl Clone for StopResponse
Source§fn clone(&self) -> StopResponse
fn clone(&self) -> StopResponse
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 StopResponse
impl Debug for StopResponse
Source§impl<'de> Deserialize<'de> for StopResponse
impl<'de> Deserialize<'de> for StopResponse
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 From<StopResponse> for StopResponse
impl From<StopResponse> for StopResponse
Source§fn from(value: StopResponse) -> Self
fn from(value: StopResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for StopResponse
impl Serialize for StopResponse
Source§impl TryFrom<StopResponse> for StopResponse
impl TryFrom<StopResponse> for StopResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: StopResponse) -> Result<Self, ConversionError>
fn try_from(value: StopResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for StopResponse
impl RefUnwindSafe for StopResponse
impl Send for StopResponse
impl Sync for StopResponse
impl Unpin for StopResponse
impl UnsafeUnpin for StopResponse
impl UnwindSafe for StopResponse
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