pub enum ChunkList {
ChunkInList(Vec<ChunkId>),
ChunkInFile(FileId),
ChunkInBundle(ChunkBundle),
}
Variants
ChunkInList(Vec<ChunkId>)
ChunkInFile(FileId)
ChunkInBundle(ChunkBundle)
Implementations
Trait Implementations
sourceimpl ObjectFormat for ChunkList
impl ObjectFormat for ChunkList
fn format_json(&self) -> Value
Auto Trait Implementations
impl RefUnwindSafe for ChunkList
impl Send for ChunkList
impl Sync for ChunkList
impl Unpin for ChunkList
impl UnwindSafe for ChunkList
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more