pub struct JobStopgroupResponse {
pub jobid: Option<i64>,
}Expand description
JobStopgroupResponse
JSON schema
{
"type": "object",
"properties": {
"jobid": {
"description": "Job ID returned when _async=true.",
"type": "integer"
}
},
"additionalProperties": true
}Fields§
§jobid: Option<i64>Job ID returned when _async=true.
Trait Implementations§
Source§impl Clone for JobStopgroupResponse
impl Clone for JobStopgroupResponse
Source§fn clone(&self) -> JobStopgroupResponse
fn clone(&self) -> JobStopgroupResponse
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 JobStopgroupResponse
impl Debug for JobStopgroupResponse
Source§impl Default for JobStopgroupResponse
impl Default for JobStopgroupResponse
Source§impl<'de> Deserialize<'de> for JobStopgroupResponse
impl<'de> Deserialize<'de> for JobStopgroupResponse
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<&JobStopgroupResponse> for JobStopgroupResponse
impl From<&JobStopgroupResponse> for JobStopgroupResponse
Source§fn from(value: &JobStopgroupResponse) -> Self
fn from(value: &JobStopgroupResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JobStopgroupResponse
impl RefUnwindSafe for JobStopgroupResponse
impl Send for JobStopgroupResponse
impl Sync for JobStopgroupResponse
impl Unpin for JobStopgroupResponse
impl UnsafeUnpin for JobStopgroupResponse
impl UnwindSafe for JobStopgroupResponse
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