pub struct PackChunkState {
pub pack_data: Vec<u8>,
pub index_data: Vec<u8>,
/* private fields */
}Fields§
§pack_data: Vec<u8>§index_data: Vec<u8>Implementations§
Source§impl PackChunkState
impl PackChunkState
pub fn is_complete(&self) -> bool
Trait Implementations§
Source§impl Clone for PackChunkState
impl Clone for PackChunkState
Source§fn clone(&self) -> PackChunkState
fn clone(&self) -> PackChunkState
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 moreSource§impl Debug for PackChunkState
impl Debug for PackChunkState
Source§impl Default for PackChunkState
impl Default for PackChunkState
Source§fn default() -> PackChunkState
fn default() -> PackChunkState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PackChunkState
impl RefUnwindSafe for PackChunkState
impl Send for PackChunkState
impl Sync for PackChunkState
impl Unpin for PackChunkState
impl UnsafeUnpin for PackChunkState
impl UnwindSafe for PackChunkState
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