ReclassifyIterator

Struct ReclassifyIterator 

Source
pub struct ReclassifyIterator<I, O> { /* private fields */ }
Expand description

CurveIterator wrapper to change the Curve type to any compatibly CurveType

Trait Implementations§

Source§

impl<AI, O, W> Aggregate<AI> for ReclassifyIterator<AggregationIterator<AI, W>, O>
where <AI as CurveIterator>::CurveKind: AggregateInto<O>, AI: CurveIterator, AI::CurveKind: CurveType<WindowKind = W>, W: Debug,

Source§

fn aggregate<I>(iter: I) -> Self
where I: Iterator<Item = AI>,

aggregate all elements of iter into a new Self pendant to core::iter::Sum
Source§

impl<I: Clone, O> Clone for ReclassifyIterator<I, O>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I, O> CurveIterator for ReclassifyIterator<I, O>
where I: CurveIterator, O: CurveType,

Source§

type CurveKind = O

The type of the curve being iterated
Source§

fn next_window(&mut self) -> Option<Window<O::WindowKind>>

calculate and returns the next window of the curve iterator advancing the iterator in the process
Source§

fn collect_curve<R: FromCurveIterator<Self::CurveKind>>(self) -> R
where Self: Sized,

collect the iterator mirroring core::iter::Iterator::collect
Source§

fn reclassify<O>(self) -> ReclassifyIterator<Self, O>
where Self: Sized,

reclassify a CurveIterator
Source§

fn normalize( self, ) -> JoinAdjacentIterator<CurveIteratorIterator<Self>, <Self::CurveKind as CurveType>::WindowKind, Self::CurveKind>
where Self: Sized,

normalize the CurveIterator by combining adjacent windows
Source§

fn take_while_curve<F>( self, fun: F, ) -> TakeWhile<CurveIteratorIterator<Self>, F>
where Self: Sized, F: for<'a> FnMut(&'a Window<<Self::CurveKind as CurveType>::WindowKind>) -> bool,

Basically core::iter::Iterator::take_while but for CurveIterator
Source§

fn fuse_curve(self) -> Fuse<CurveIteratorIterator<Self>>
where Self: Sized,

Basically core::iter::Iterator::fuse but for CurveIterator
Source§

fn into_iterator(self) -> CurveIteratorIterator<Self>
where Self: Sized,

Wrap the CurveIterator to allow usage of standart Iterator adapters
Source§

impl<I: Debug, O: Debug> Debug for ReclassifyIterator<I, O>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<I, O> Freeze for ReclassifyIterator<I, O>
where I: Freeze,

§

impl<I, O> RefUnwindSafe for ReclassifyIterator<I, O>

§

impl<I, O> Send for ReclassifyIterator<I, O>
where I: Send, O: Send,

§

impl<I, O> Sync for ReclassifyIterator<I, O>
where I: Sync, O: Sync,

§

impl<I, O> Unpin for ReclassifyIterator<I, O>
where I: Unpin, O: Unpin,

§

impl<I, O> UnwindSafe for ReclassifyIterator<I, O>
where I: UnwindSafe, O: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<'b, T> ClonableCurveIterator<'b> for T
where T: 'b + CurveIterator + Clone,

Source§

fn clone_box( &self, ) -> Box<dyn ClonableCurveIterator<'b, CurveKind = <T as CurveIterator>::CurveKind>>

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.