pub struct GenericSeriesState<T: SeriesValue> { /* private fields */ }
Implementations§
Source§impl<T: SeriesValue> GenericSeriesState<T>
impl<T: SeriesValue> GenericSeriesState<T>
Trait Implementations§
Source§impl<T: Clone + SeriesValue> Clone for GenericSeriesState<T>
impl<T: Clone + SeriesValue> Clone for GenericSeriesState<T>
Source§fn clone(&self) -> GenericSeriesState<T>
fn clone(&self) -> GenericSeriesState<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug + SeriesValue> Debug for GenericSeriesState<T>
impl<T: Debug + SeriesValue> Debug for GenericSeriesState<T>
Source§impl<T: SeriesValue> Display for GenericSeriesState<T>
impl<T: SeriesValue> Display for GenericSeriesState<T>
Source§impl<T: SeriesValue> LazyBatchGenerator for GenericSeriesState<T>
impl<T: SeriesValue> LazyBatchGenerator for GenericSeriesState<T>
Source§fn as_any(&self) -> &dyn Any
fn as_any(&self) -> &dyn Any
Returns the generator as
Any
so that it can be
downcast to a specific implementation.Source§fn generate_next_batch(&mut self) -> Result<Option<RecordBatch>>
fn generate_next_batch(&mut self) -> Result<Option<RecordBatch>>
Generate the next batch, return
None
when no more batches are availablefn boundedness(&self) -> Boundedness
Auto Trait Implementations§
impl<T> Freeze for GenericSeriesState<T>
impl<T> RefUnwindSafe for GenericSeriesState<T>
impl<T> Send for GenericSeriesState<T>
impl<T> Sync for GenericSeriesState<T>
impl<T> Unpin for GenericSeriesState<T>
impl<T> UnwindSafe for GenericSeriesState<T>
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