pub struct DeltaDecoder { /* private fields */ }
Implementations§
Source§impl DeltaDecoder
impl DeltaDecoder
pub fn new(instructions: &[u8], base: Vec<u8>) -> Result<DeltaDecoder>
pub fn output_size(&self) -> usize
Trait Implementations§
Source§impl Debug for DeltaDecoder
impl Debug for DeltaDecoder
Source§impl Into<DeltaDecoderStream> for DeltaDecoder
impl Into<DeltaDecoderStream> for DeltaDecoder
Source§fn into(self) -> DeltaDecoderStream ⓘ
fn into(self) -> DeltaDecoderStream ⓘ
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for DeltaDecoder
impl RefUnwindSafe for DeltaDecoder
impl Send for DeltaDecoder
impl Sync for DeltaDecoder
impl Unpin for DeltaDecoder
impl UnwindSafe for DeltaDecoder
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more