pub struct GetTaskPayloadParams {
pub task_id: String,
}Expand description
GetTaskPayloadParams
JSON schema
{
"type": "object",
"required": [
"taskId"
],
"properties": {
"taskId": {
"description": "The task identifier to retrieve results for.",
"type": "string"
}
}
}Fields§
§task_id: StringThe task identifier to retrieve results for.
Trait Implementations§
Source§impl Clone for GetTaskPayloadParams
impl Clone for GetTaskPayloadParams
Source§fn clone(&self) -> GetTaskPayloadParams
fn clone(&self) -> GetTaskPayloadParams
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 GetTaskPayloadParams
impl Debug for GetTaskPayloadParams
Source§impl<'de> Deserialize<'de> for GetTaskPayloadParams
impl<'de> Deserialize<'de> for GetTaskPayloadParams
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 GetTaskPayloadParams
impl RefUnwindSafe for GetTaskPayloadParams
impl Send for GetTaskPayloadParams
impl Sync for GetTaskPayloadParams
impl Unpin for GetTaskPayloadParams
impl UnwindSafe for GetTaskPayloadParams
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