pub enum ArchiveWriterState {
OpenedFiles {
ids: Vec<ArchiveFileID>,
hashes: HashMap<ArchiveFileID, Sha256>,
},
Finalized,
}
Variants§
Trait Implementations§
Source§impl Clone for ArchiveWriterState
impl Clone for ArchiveWriterState
Source§fn clone(&self) -> ArchiveWriterState
fn clone(&self) -> ArchiveWriterState
Returns a duplicate of the value. Read more
1.0.0 · 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 ArchiveWriterState
impl RefUnwindSafe for ArchiveWriterState
impl Send for ArchiveWriterState
impl Sync for ArchiveWriterState
impl Unpin for ArchiveWriterState
impl UnwindSafe for ArchiveWriterState
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