pub struct LazyTable {
pub client: Arc<Client>,
pub namespace_name: String,
pub table_name: String,
/* private fields */
}Expand description
A lazy-loaded table holder containing client and table metadata. The actual Table is loaded on first access if not provided upfront.
Fields§
§client: Arc<Client>§namespace_name: String§table_name: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LazyTable
impl !RefUnwindSafe for LazyTable
impl Send for LazyTable
impl Sync for LazyTable
impl Unpin for LazyTable
impl !UnwindSafe for LazyTable
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