pub struct TbpFlags(pub u16);Expand description
TBP flags
Tuple Fields§
§0: u16Implementations§
Source§impl TbpFlags
impl TbpFlags
Sourcepub const HAS_ROW_INDEX: u16
pub const HAS_ROW_INDEX: u16
Row index is present (for variable-length data)
Sourcepub const COMPRESSED: u16
pub const COMPRESSED: u16
Data is compressed
Sourcepub const EMBEDDED_SCHEMA: u16
pub const EMBEDDED_SCHEMA: u16
Schema is embedded in the file
pub fn has_nulls(&self) -> bool
pub fn has_row_index(&self) -> bool
pub fn is_compressed(&self) -> bool
pub fn has_embedded_schema(&self) -> bool
Trait Implementations§
impl Copy for TbpFlags
Auto Trait Implementations§
impl Freeze for TbpFlags
impl RefUnwindSafe for TbpFlags
impl Send for TbpFlags
impl Sync for TbpFlags
impl Unpin for TbpFlags
impl UnwindSafe for TbpFlags
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