pub struct PendingTasksResponse {
pub account_id: Option<String>,
pub description: Option<String>,
pub error: Option<Box<ErrorResponse>>,
pub error_description: Option<String>,
pub has_error: Option<bool>,
pub pending_task_present: Option<bool>,
pub pending_tasks: Option<Vec<PendingTask>>,
pub state: Option<String>,
pub status: Option<String>,
}Fields§
§account_id: Option<String>§description: Option<String>§error: Option<Box<ErrorResponse>>§error_description: Option<String>§has_error: Option<bool>§pending_task_present: Option<bool>§pending_tasks: Option<Vec<PendingTask>>§state: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for PendingTasksResponse
impl Clone for PendingTasksResponse
Source§fn clone(&self) -> PendingTasksResponse
fn clone(&self) -> PendingTasksResponse
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 PendingTasksResponse
impl Debug for PendingTasksResponse
Source§impl Default for PendingTasksResponse
impl Default for PendingTasksResponse
Source§impl<'de> Deserialize<'de> for PendingTasksResponse
impl<'de> Deserialize<'de> for PendingTasksResponse
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 PendingTasksResponse
impl PartialEq for PendingTasksResponse
impl StructuralPartialEq for PendingTasksResponse
Auto Trait Implementations§
impl Freeze for PendingTasksResponse
impl RefUnwindSafe for PendingTasksResponse
impl Send for PendingTasksResponse
impl Sync for PendingTasksResponse
impl Unpin for PendingTasksResponse
impl UnsafeUnpin for PendingTasksResponse
impl UnwindSafe for PendingTasksResponse
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