pub enum DirDecoder {
Zip,
TarGzip,
ZipGzip,
TarZstd,
ZipZstd,
}
Expand description
Represents the compression decoding algorithm for directory.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DirDecoder
impl Clone for DirDecoder
Source§fn clone(&self) -> DirDecoder
fn clone(&self) -> DirDecoder
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Display for DirDecoder
ref. https://doc.rust-lang.org/std/string/trait.ToString.html
ref. https://doc.rust-lang.org/std/fmt/trait.Display.html
Use “Self.to_string()” to directly invoke this
impl Display for DirDecoder
ref. https://doc.rust-lang.org/std/string/trait.ToString.html ref. https://doc.rust-lang.org/std/fmt/trait.Display.html Use “Self.to_string()” to directly invoke this
Auto Trait Implementations§
impl Freeze for DirDecoder
impl RefUnwindSafe for DirDecoder
impl Send for DirDecoder
impl Sync for DirDecoder
impl Unpin for DirDecoder
impl UnwindSafe for DirDecoder
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