pub struct QueueItemProgress {
pub id: u64,
pub title: String,
pub platform: String,
pub percent: f64,
pub speed_bytes_per_sec: f64,
pub downloaded_bytes: u64,
pub total_bytes: Option<u64>,
pub phase: String,
}Fields§
§id: u64§title: String§platform: String§percent: f64§speed_bytes_per_sec: f64§downloaded_bytes: u64§total_bytes: Option<u64>§phase: StringTrait Implementations§
Source§impl Clone for QueueItemProgress
impl Clone for QueueItemProgress
Source§fn clone(&self) -> QueueItemProgress
fn clone(&self) -> QueueItemProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QueueItemProgress
impl RefUnwindSafe for QueueItemProgress
impl Send for QueueItemProgress
impl Sync for QueueItemProgress
impl Unpin for QueueItemProgress
impl UnsafeUnpin for QueueItemProgress
impl UnwindSafe for QueueItemProgress
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