pub struct GetTaskStatus {
pub task_ids: Vec<String>,
}Fields§
§task_ids: Vec<String>Specify the task_id of the task to be queried in the array. If the array is empty, the response will also be empty; If this field is omitted, the status of the most recently completed task and the status of all incomplete tasks of the robot will be returned.
Implementations§
Source§impl GetTaskStatus
impl GetTaskStatus
pub fn into_request(self) -> TaskStatusRequest
Trait Implementations§
Source§impl Clone for GetTaskStatus
impl Clone for GetTaskStatus
Source§fn clone(&self) -> GetTaskStatus
fn clone(&self) -> GetTaskStatus
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 GetTaskStatus
impl Debug for GetTaskStatus
Source§impl<'de> Deserialize<'de> for GetTaskStatus
impl<'de> Deserialize<'de> for GetTaskStatus
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 FromIterator<String> for GetTaskStatus
impl FromIterator<String> for GetTaskStatus
Auto Trait Implementations§
impl Freeze for GetTaskStatus
impl RefUnwindSafe for GetTaskStatus
impl Send for GetTaskStatus
impl Sync for GetTaskStatus
impl Unpin for GetTaskStatus
impl UnwindSafe for GetTaskStatus
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