pub struct TableData<S: Stream<Item = Result<Bytes>> + Send, C: AsyncCleanup> {
pub data: S,
pub data_format: DataFormat,
pub cleanup: C,
}Expand description
Data in a table. This data is a stream which can be read from the data source.
Make sure to call cleanup when you have read all the data from the stream.
Fields§
§data: S§data_format: DataFormat§cleanup: CTrait Implementations§
Auto Trait Implementations§
impl<S, C> Freeze for TableData<S, C>
impl<S, C> RefUnwindSafe for TableData<S, C>where
S: RefUnwindSafe,
C: RefUnwindSafe,
impl<S, C> Send for TableData<S, C>
impl<S, C> Sync for TableData<S, C>
impl<S, C> Unpin for TableData<S, C>
impl<S, C> UnwindSafe for TableData<S, C>where
S: 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
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