Struct differential_dataflow::operators::join::EffortBuilder

source ·
pub struct EffortBuilder<CB>(pub Cell<usize>, pub CB);
Expand description

A container builder that tracks the length of outputs to estimate the effort of join closures.

Tuple Fields§

§0: Cell<usize>§1: CB

Trait Implementations§

source§

impl<CB: ContainerBuilder> ContainerBuilder for EffortBuilder<CB>

§

type Container = <CB as ContainerBuilder>::Container

The container type we’re building.
source§

fn extract(&mut self) -> Option<&mut Self::Container>

Extract assembled containers, potentially leaving unfinished data behind. Can be called repeatedly, for example while the caller can send data. Read more
source§

fn finish(&mut self) -> Option<&mut Self::Container>

Extract assembled containers and any unfinished data. Should be called repeatedly until it returns None.
source§

impl<CB: Debug> Debug for EffortBuilder<CB>

source§

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

Formats the value using the given formatter. Read more
source§

impl<CB: Default> Default for EffortBuilder<CB>

source§

fn default() -> EffortBuilder<CB>

Returns the “default value” for a type. Read more
source§

impl<CB: PushInto<D>, D> PushInto<D> for EffortBuilder<CB>

source§

fn push_into(&mut self, item: D)

Push item into self.

Auto Trait Implementations§

§

impl<CB> !Freeze for EffortBuilder<CB>

§

impl<CB> !RefUnwindSafe for EffortBuilder<CB>

§

impl<CB> Send for EffortBuilder<CB>
where CB: Send,

§

impl<CB> !Sync for EffortBuilder<CB>

§

impl<CB> Unpin for EffortBuilder<CB>
where CB: Unpin,

§

impl<CB> UnwindSafe for EffortBuilder<CB>
where CB: 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<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<'a, S, T> Semigroup<&'a S> for T
where T: Semigroup<S>,

source§

fn plus_equals(&mut self, rhs: &&'a S)

The method of std::ops::AddAssign, for types that do not implement AddAssign.
source§

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

§

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>,

§

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.