pub struct task_progress_info {
pub task: Option<String>,
pub time: Option<i32>,
pub percent: Option<f32>,
pub remaining: Option<u32>,
pub etc: Option<u32>,
}Fields§
§task: Option<String>§time: Option<i32>§percent: Option<f32>§remaining: Option<u32>§etc: Option<u32>Trait Implementations§
Source§impl Debug for task_progress_info
impl Debug for task_progress_info
Source§impl<'de> Deserialize<'de> for task_progress_info
impl<'de> Deserialize<'de> for task_progress_info
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 task_progress_info
impl PartialEq for task_progress_info
Source§impl Serialize for task_progress_info
impl Serialize for task_progress_info
impl StructuralPartialEq for task_progress_info
Auto Trait Implementations§
impl Freeze for task_progress_info
impl RefUnwindSafe for task_progress_info
impl Send for task_progress_info
impl Sync for task_progress_info
impl Unpin for task_progress_info
impl UnwindSafe for task_progress_info
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