pub struct DynamicListTableFactory {
session_store: SessionStore,
}Expand description
DynamicListTableFactory is a factory that can create a ListingTable from the given url.
Fields§
§session_store: SessionStoreThe session store that contains the current session.
Implementations§
Source§impl DynamicListTableFactory
impl DynamicListTableFactory
Sourcepub fn new(session_store: SessionStore) -> Self
pub fn new(session_store: SessionStore) -> Self
Create a new DynamicListTableFactory with the given state store.
Sourcepub fn session_store(&self) -> &SessionStore
pub fn session_store(&self) -> &SessionStore
Get the session store.
Trait Implementations§
Source§impl Debug for DynamicListTableFactory
impl Debug for DynamicListTableFactory
Source§impl Default for DynamicListTableFactory
impl Default for DynamicListTableFactory
Source§fn default() -> DynamicListTableFactory
fn default() -> DynamicListTableFactory
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DynamicListTableFactory
impl !RefUnwindSafe for DynamicListTableFactory
impl Send for DynamicListTableFactory
impl Sync for DynamicListTableFactory
impl Unpin for DynamicListTableFactory
impl !UnwindSafe for DynamicListTableFactory
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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