pub struct StructuredWriteOptions { /* private fields */ }Implementations§
Source§impl StructuredWriteOptions
impl StructuredWriteOptions
pub fn with_ttl(ttl_seconds: u32) -> Self
pub fn with_column_family(column_family: impl Into<String>) -> Self
pub fn with_await_durable(self, await_durable: bool) -> Self
pub fn as_cobble(&self) -> &WriteOptions
pub fn into_cobble(self) -> WriteOptions
pub fn ttl_seconds(&self) -> Option<u32>
pub fn column_family(&self) -> Option<&str>
pub fn await_durable(&self) -> bool
Trait Implementations§
Source§impl Clone for StructuredWriteOptions
impl Clone for StructuredWriteOptions
Source§impl Debug for StructuredWriteOptions
impl Debug for StructuredWriteOptions
Source§impl Default for StructuredWriteOptions
impl Default for StructuredWriteOptions
Source§impl From<StructuredWriteOptions> for WriteOptions
impl From<StructuredWriteOptions> for WriteOptions
Source§fn from(value: StructuredWriteOptions) -> Self
fn from(value: StructuredWriteOptions) -> Self
Converts to this type from the input type.
Source§impl From<WriteOptions> for StructuredWriteOptions
impl From<WriteOptions> for StructuredWriteOptions
Source§fn from(value: WriteOptions) -> Self
fn from(value: WriteOptions) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StructuredWriteOptions
impl RefUnwindSafe for StructuredWriteOptions
impl Send for StructuredWriteOptions
impl Sync for StructuredWriteOptions
impl Unpin for StructuredWriteOptions
impl UnsafeUnpin for StructuredWriteOptions
impl UnwindSafe for StructuredWriteOptions
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