pub struct TableData<R: TableDataReader, C: AsyncCleanup> {
pub data: R,
pub data_format: DataFormat,
pub cleanup: C,
}Expand description
Data in a table. This data can be read from the data source using the reader.
Make sure to call cleanup when you have read all the data from the reader.
Fields§
§data: R§data_format: DataFormat§cleanup: CTrait Implementations§
Source§impl<R: TableDataReader, C: AsyncCleanup> AsyncCleanup for TableData<R, C>
impl<R: TableDataReader, C: AsyncCleanup> AsyncCleanup for TableData<R, C>
Auto Trait Implementations§
impl<R, C> Freeze for TableData<R, C>
impl<R, C> RefUnwindSafe for TableData<R, C>where
R: RefUnwindSafe,
C: RefUnwindSafe,
impl<R, C> Send for TableData<R, C>
impl<R, C> Sync for TableData<R, C>
impl<R, C> Unpin for TableData<R, C>
impl<R, C> UnsafeUnpin for TableData<R, C>where
R: UnsafeUnpin,
C: UnsafeUnpin,
impl<R, C> UnwindSafe for TableData<R, C>where
R: UnwindSafe,
C: UnwindSafe,
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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