#[repr(u8)]pub enum LogicalTechnique {
None = 0,
Delta = 1,
ComponentwiseDelta = 2,
Rle = 3,
Morton = 4,
PseudoDecimal = 5,
}Expand description
Logical encoding technique used for a column, as stored in the tile
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for LogicalTechnique
impl Clone for LogicalTechnique
Source§fn clone(&self) -> LogicalTechnique
fn clone(&self) -> LogicalTechnique
Returns a duplicate 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 LogicalTechnique
impl Debug for LogicalTechnique
Source§impl PartialEq for LogicalTechnique
impl PartialEq for LogicalTechnique
Source§impl TryFrom<u8> for LogicalTechnique
impl TryFrom<u8> for LogicalTechnique
Source§type Error = TryFromPrimitiveError<LogicalTechnique>
type Error = TryFromPrimitiveError<LogicalTechnique>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for LogicalTechnique
impl TryFromPrimitive for LogicalTechnique
const NAME: &'static str = "LogicalTechnique"
type Primitive = u8
type Error = TryFromPrimitiveError<LogicalTechnique>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for LogicalTechnique
impl StructuralPartialEq for LogicalTechnique
Auto Trait Implementations§
impl Freeze for LogicalTechnique
impl RefUnwindSafe for LogicalTechnique
impl Send for LogicalTechnique
impl Sync for LogicalTechnique
impl Unpin for LogicalTechnique
impl UnsafeUnpin for LogicalTechnique
impl UnwindSafe for LogicalTechnique
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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