pub struct SSTableEntry {
pub key: RowKey,
pub values: Vec<Value>,
pub timestamp: Option<i64>,
pub generation: Option<u64>,
pub format_info: String,
}Expand description
Parsed SSTable entry
Fields§
§key: RowKeyRow key
values: Vec<Value>Column values
timestamp: Option<i64>Write timestamp
generation: Option<u64>Generation number
format_info: StringFormat-specific information
Trait Implementations§
Source§impl Clone for SSTableEntry
impl Clone for SSTableEntry
Source§fn clone(&self) -> SSTableEntry
fn clone(&self) -> SSTableEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SSTableEntry
impl RefUnwindSafe for SSTableEntry
impl Send for SSTableEntry
impl Sync for SSTableEntry
impl Unpin for SSTableEntry
impl UnsafeUnpin for SSTableEntry
impl UnwindSafe for SSTableEntry
Blanket Implementations§
impl<T> Allocation for T
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