pub enum TSEncoding {
Plain = 0,
PlainDictionary = 1,
RLE = 2,
Diff = 3,
Ts2diff = 4,
Bitmap = 5,
GorillaV1 = 6,
Regular = 7,
Gorilla = 8,
}
Variants§
Plain = 0
PlainDictionary = 1
RLE = 2
Diff = 3
Ts2diff = 4
Bitmap = 5
GorillaV1 = 6
Regular = 7
Gorilla = 8
Trait Implementations§
Source§impl Clone for TSEncoding
impl Clone for TSEncoding
Source§fn clone(&self) -> TSEncoding
fn clone(&self) -> TSEncoding
Returns a copy 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 TSEncoding
impl Debug for TSEncoding
Source§impl From<TSEncoding> for i32
impl From<TSEncoding> for i32
Source§fn from(t: TSEncoding) -> i32
fn from(t: TSEncoding) -> i32
Converts to this type from the input type.
Source§impl Hash for TSEncoding
impl Hash for TSEncoding
Source§impl Ord for TSEncoding
impl Ord for TSEncoding
Source§fn cmp(&self, other: &TSEncoding) -> Ordering
fn cmp(&self, other: &TSEncoding) -> 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 TSEncoding
impl PartialEq for TSEncoding
Source§impl PartialOrd for TSEncoding
impl PartialOrd for TSEncoding
impl Eq for TSEncoding
impl StructuralPartialEq for TSEncoding
Auto Trait Implementations§
impl Freeze for TSEncoding
impl RefUnwindSafe for TSEncoding
impl Send for TSEncoding
impl Sync for TSEncoding
impl Unpin for TSEncoding
impl UnwindSafe for TSEncoding
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