pub struct DeltaDecoder { /* private fields */ }Expand description
Streaming Delta decoder.
Implementations§
Source§impl DeltaDecoder
impl DeltaDecoder
pub fn new(data: &[u8]) -> Result<Self, CodecError>
pub fn decode_all(data: &[u8]) -> Result<Vec<i64>, CodecError>
pub fn next_value(&mut self) -> Option<i64>
pub fn remaining(&self) -> usize
Auto Trait Implementations§
impl Freeze for DeltaDecoder
impl RefUnwindSafe for DeltaDecoder
impl Send for DeltaDecoder
impl Sync for DeltaDecoder
impl Unpin for DeltaDecoder
impl UnsafeUnpin 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