pub struct StructuredReadOptions { /* private fields */ }Implementations§
Source§impl StructuredReadOptions
impl StructuredReadOptions
pub fn for_column(column_index: usize) -> Self
pub fn for_columns(column_indices: Vec<usize>) -> Self
pub fn for_column_in_family( column_family: impl Into<String>, column_index: usize, ) -> Self
pub fn for_columns_in_family( column_family: impl Into<String>, column_indices: Vec<usize>, ) -> Self
pub fn with_column_family(self, column_family: impl Into<String>) -> Self
pub fn as_cobble(&self) -> &ReadOptions
pub fn into_cobble(self) -> ReadOptions
Trait Implementations§
Source§impl Clone for StructuredReadOptions
impl Clone for StructuredReadOptions
Source§impl Debug for StructuredReadOptions
impl Debug for StructuredReadOptions
Source§impl Default for StructuredReadOptions
impl Default for StructuredReadOptions
Source§impl From<ReadOptions> for StructuredReadOptions
impl From<ReadOptions> for StructuredReadOptions
Source§fn from(value: ReadOptions) -> Self
fn from(value: ReadOptions) -> Self
Converts to this type from the input type.
Source§impl From<StructuredReadOptions> for ReadOptions
impl From<StructuredReadOptions> for ReadOptions
Source§fn from(value: StructuredReadOptions) -> Self
fn from(value: StructuredReadOptions) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StructuredReadOptions
impl RefUnwindSafe for StructuredReadOptions
impl Send for StructuredReadOptions
impl Sync for StructuredReadOptions
impl Unpin for StructuredReadOptions
impl UnsafeUnpin for StructuredReadOptions
impl UnwindSafe for StructuredReadOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DebugAny for T
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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