pub struct SessionStoreContract {
pub store: SessionStoreKind,
pub latest_row_per_session: bool,
pub tombstones_supported: bool,
pub dedup_read_path: bool,
pub file_locking: bool,
pub crash_recovery: bool,
pub bigquery_dataset: Option<String>,
pub bigquery_table: Option<String>,
}Fields§
§store: SessionStoreKind§latest_row_per_session: bool§tombstones_supported: bool§dedup_read_path: bool§file_locking: bool§crash_recovery: bool§bigquery_dataset: Option<String>§bigquery_table: Option<String>Trait Implementations§
Source§impl Clone for SessionStoreContract
impl Clone for SessionStoreContract
Source§fn clone(&self) -> SessionStoreContract
fn clone(&self) -> SessionStoreContract
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 SessionStoreContract
impl Debug for SessionStoreContract
Source§impl<'de> Deserialize<'de> for SessionStoreContract
impl<'de> Deserialize<'de> for SessionStoreContract
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
Source§impl PartialEq for SessionStoreContract
impl PartialEq for SessionStoreContract
Source§fn eq(&self, other: &SessionStoreContract) -> bool
fn eq(&self, other: &SessionStoreContract) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionStoreContract
impl Serialize for SessionStoreContract
impl Eq for SessionStoreContract
impl StructuralPartialEq for SessionStoreContract
Auto Trait Implementations§
impl Freeze for SessionStoreContract
impl RefUnwindSafe for SessionStoreContract
impl Send for SessionStoreContract
impl Sync for SessionStoreContract
impl Unpin for SessionStoreContract
impl UnsafeUnpin for SessionStoreContract
impl UnwindSafe for SessionStoreContract
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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