pub enum Chunker {
Fixed(Fixed),
Rabin(Box<Rabin>),
}
Variants§
Implementations§
Trait Implementations§
Source§impl From<ChunkerConfig> for Chunker
impl From<ChunkerConfig> for Chunker
Source§fn from(cfg: ChunkerConfig) -> Self
fn from(cfg: ChunkerConfig) -> Self
Converts to this type from the input type.
impl Eq for Chunker
impl StructuralPartialEq for Chunker
Auto Trait Implementations§
impl Freeze for Chunker
impl RefUnwindSafe for Chunker
impl Send for Chunker
impl Sync for Chunker
impl Unpin for Chunker
impl UnwindSafe for Chunker
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