pub struct RunSpec<'a> {
pub run_id: u128,
pub schema_id: u64,
pub epoch_created: u64,
pub level: u8,
pub flags: u8,
pub sort_key_column_id: u16,
pub row_count: u64,
pub min_row_id: u64,
pub max_row_id: u64,
pub columns: &'a [ColumnPayload],
}Expand description
Specification handed to write_run / write_run_with.
Fields§
§run_id: u128§schema_id: u64§epoch_created: u64§level: u8§flags: u8§sort_key_column_id: u16§row_count: u64§min_row_id: u64§max_row_id: u64§columns: &'a [ColumnPayload]Auto Trait Implementations§
impl<'a> Freeze for RunSpec<'a>
impl<'a> RefUnwindSafe for RunSpec<'a>
impl<'a> Send for RunSpec<'a>
impl<'a> Sync for RunSpec<'a>
impl<'a> Unpin for RunSpec<'a>
impl<'a> UnsafeUnpin for RunSpec<'a>
impl<'a> UnwindSafe for RunSpec<'a>
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