pub struct BarAggregatorCore<H>where
H: FnMut(Bar),{ /* private fields */ }
Expand description
Provides a means of aggregating specified bar types and sending to a registered handler.
Implementations§
Source§impl<H> BarAggregatorCore<H>where
H: FnMut(Bar),
impl<H> BarAggregatorCore<H>where
H: FnMut(Bar),
Sourcepub fn new(
instrument: &InstrumentAny,
bar_type: BarType,
handler: H,
await_partial: bool,
) -> Self
pub fn new( instrument: &InstrumentAny, bar_type: BarType, handler: H, await_partial: bool, ) -> Self
Creates a new BarAggregatorCore
instance.
§Panics
This function panics:
- If
instrument.id
is not equal to thebar_type.instrument_id
. - If
bar_type.aggregation_source
is not equal toAggregationSource::Internal
.
pub fn set_await_partial(&mut self, value: bool)
Sourcepub fn set_partial(&mut self, partial_bar: Bar)
pub fn set_partial(&mut self, partial_bar: Bar)
Set the initial values for a partially completed bar.
Auto Trait Implementations§
impl<H> Freeze for BarAggregatorCore<H>where
H: Freeze,
impl<H> RefUnwindSafe for BarAggregatorCore<H>where
H: RefUnwindSafe,
impl<H> Send for BarAggregatorCore<H>where
H: Send,
impl<H> Sync for BarAggregatorCore<H>where
H: Sync,
impl<H> Unpin for BarAggregatorCore<H>where
H: Unpin,
impl<H> UnwindSafe for BarAggregatorCore<H>where
H: 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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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