pub struct DeltaRleColumn<T> {
pub data: Vec<T>,
pub attr: ColumnAttr,
}Expand description
The Column that is scheduled to be compressed using DeltaRleEncoder
Fields§
§data: Vec<T>§attr: ColumnAttrImplementations§
Source§impl<T> DeltaRleColumn<T>
impl<T> DeltaRleColumn<T>
pub fn new(data: Vec<T>, attr: ColumnAttr) -> Self
Trait Implementations§
Source§impl<T> ColumnTrait for DeltaRleColumn<T>where
T: DeltaRleable,
impl<T> ColumnTrait for DeltaRleColumn<T>where
T: DeltaRleable,
Source§impl<T: Debug> Debug for DeltaRleColumn<T>
impl<T: Debug> Debug for DeltaRleColumn<T>
Source§impl<'de, T: DeltaRleable> Deserialize<'de> for DeltaRleColumn<T>
impl<'de, T: DeltaRleable> Deserialize<'de> for DeltaRleColumn<T>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T: DeltaRleable> From<Vec<T>> for DeltaRleColumn<T>
impl<T: DeltaRleable> From<Vec<T>> for DeltaRleColumn<T>
Source§impl<T: DeltaRleable> Serialize for DeltaRleColumn<T>
impl<T: DeltaRleable> Serialize for DeltaRleColumn<T>
Auto Trait Implementations§
impl<T> Freeze for DeltaRleColumn<T>
impl<T> RefUnwindSafe for DeltaRleColumn<T>where
T: RefUnwindSafe,
impl<T> Send for DeltaRleColumn<T>where
T: Send,
impl<T> Sync for DeltaRleColumn<T>where
T: Sync,
impl<T> Unpin for DeltaRleColumn<T>where
T: Unpin,
impl<T> UnwindSafe for DeltaRleColumn<T>where
T: UnwindSafe,
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