pub struct TaskStatusWithId {
pub description: Option<String>,
pub estimated_time_remaining: String,
pub info: Option<Option<Value>>,
pub pct_complete: String,
pub status: Status,
pub task_type: String,
pub time_started: String,
pub time_total: String,
pub clean_up: Option<Value>,
pub error: Option<Value>,
pub task_id: Uuid,
}Fields§
§description: Option<String>§estimated_time_remaining: String§info: Option<Option<Value>>§pct_complete: String§status: Status§task_type: String§time_started: String§time_total: String§clean_up: Option<Value>§error: Option<Value>§task_id: UuidImplementations§
Trait Implementations§
Source§impl Clone for TaskStatusWithId
impl Clone for TaskStatusWithId
Source§fn clone(&self) -> TaskStatusWithId
fn clone(&self) -> TaskStatusWithId
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 TaskStatusWithId
impl Debug for TaskStatusWithId
Source§impl Default for TaskStatusWithId
impl Default for TaskStatusWithId
Source§fn default() -> TaskStatusWithId
fn default() -> TaskStatusWithId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskStatusWithId
impl<'de> Deserialize<'de> for TaskStatusWithId
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 TaskStatusWithId
impl PartialEq for TaskStatusWithId
Source§impl Serialize for TaskStatusWithId
impl Serialize for TaskStatusWithId
impl StructuralPartialEq for TaskStatusWithId
Auto Trait Implementations§
impl Freeze for TaskStatusWithId
impl RefUnwindSafe for TaskStatusWithId
impl Send for TaskStatusWithId
impl Sync for TaskStatusWithId
impl Unpin for TaskStatusWithId
impl UnsafeUnpin for TaskStatusWithId
impl UnwindSafe for TaskStatusWithId
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