pub struct PartitionTombstone {
pub deletion_time: i64,
pub local_deletion_time: i32,
}Expand description
Partition tombstone for deleting entire partition
Stored in the partition header and shadows all rows in the partition when the partition deletion time is greater than the row timestamps.
Fields§
§deletion_time: i64Deletion timestamp in microseconds since Unix epoch
local_deletion_time: i32Local deletion time in seconds since Unix epoch
Trait Implementations§
Source§impl Clone for PartitionTombstone
impl Clone for PartitionTombstone
Source§fn clone(&self) -> PartitionTombstone
fn clone(&self) -> PartitionTombstone
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 moreSource§impl Debug for PartitionTombstone
impl Debug for PartitionTombstone
Source§impl<'de> Deserialize<'de> for PartitionTombstone
impl<'de> Deserialize<'de> for PartitionTombstone
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
Auto Trait Implementations§
impl Freeze for PartitionTombstone
impl RefUnwindSafe for PartitionTombstone
impl Send for PartitionTombstone
impl Sync for PartitionTombstone
impl Unpin for PartitionTombstone
impl UnsafeUnpin for PartitionTombstone
impl UnwindSafe for PartitionTombstone
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