pub struct ChunkStatus {
pub chunk_id: i32,
pub name: String,
pub item_id: String,
pub type: ChunkType,
pub state: ChunkState,
pub progress: f32,
pub size: u64,
pub chunk_eta: i32,
pub total_eta: i32,
}Fields§
§chunk_id: i32§name: String§item_id: String§type: ChunkType§state: ChunkState§progress: f32§size: u64§chunk_eta: i32§total_eta: i32Trait Implementations§
Source§impl Debug for ChunkStatus
impl Debug for ChunkStatus
Source§impl<'de> Deserialize<'de> for ChunkStatus
impl<'de> Deserialize<'de> for ChunkStatus
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
Auto Trait Implementations§
impl Freeze for ChunkStatus
impl RefUnwindSafe for ChunkStatus
impl Send for ChunkStatus
impl Sync for ChunkStatus
impl Unpin for ChunkStatus
impl UnwindSafe for ChunkStatus
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