pub enum CVCompression {
None,
Lzw,
}Expand description
The used compression of the source CV.
Variants§
None
No compression
Lzw
👎Deprecated: Is not implemented yet
For LZW (.Z) compressed files like IMGT TODO: does not work yet
Trait Implementations§
Source§impl Clone for CVCompression
impl Clone for CVCompression
Source§fn clone(&self) -> CVCompression
fn clone(&self) -> CVCompression
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 moreSource§impl Debug for CVCompression
impl Debug for CVCompression
Source§impl Default for CVCompression
impl Default for CVCompression
Source§fn default() -> CVCompression
fn default() -> CVCompression
Returns the “default value” for a type. Read more
Source§impl Ord for CVCompression
impl Ord for CVCompression
Source§fn cmp(&self, other: &CVCompression) -> Ordering
fn cmp(&self, other: &CVCompression) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CVCompression
impl PartialEq for CVCompression
Source§impl PartialOrd for CVCompression
impl PartialOrd for CVCompression
impl Copy for CVCompression
impl Eq for CVCompression
impl StructuralPartialEq for CVCompression
Auto Trait Implementations§
impl Freeze for CVCompression
impl RefUnwindSafe for CVCompression
impl Send for CVCompression
impl Sync for CVCompression
impl Unpin for CVCompression
impl UnwindSafe for CVCompression
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