pub struct DoubleDeltaDecoder { /* private fields */ }Expand description
Streaming DoubleDelta decoder. Wraps the batch decode() function.
Implementations§
Source§impl DoubleDeltaDecoder
impl DoubleDeltaDecoder
Sourcepub fn new(data: &[u8]) -> Result<Self, CodecError>
pub fn new(data: &[u8]) -> Result<Self, CodecError>
Create a decoder from compressed bytes.
Sourcepub fn decode_all(data: &[u8]) -> Result<Vec<i64>, CodecError>
pub fn decode_all(data: &[u8]) -> Result<Vec<i64>, CodecError>
Decode all values at once.
Sourcepub fn next_value(&mut self) -> Option<i64>
pub fn next_value(&mut self) -> Option<i64>
Next value, or None if exhausted.
Auto Trait Implementations§
impl Freeze for DoubleDeltaDecoder
impl RefUnwindSafe for DoubleDeltaDecoder
impl Send for DoubleDeltaDecoder
impl Sync for DoubleDeltaDecoder
impl Unpin for DoubleDeltaDecoder
impl UnsafeUnpin for DoubleDeltaDecoder
impl UnwindSafe for DoubleDeltaDecoder
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.