pub type DifferentialEventBuilder = CapacityContainerBuilder<Vec<(Duration, DifferentialEvent)>>;
Expand description
Container builder for differential log events.
Aliased Type§
struct DifferentialEventBuilder { /* private fields */ }
Trait Implementations
Source§impl<C> ContainerBuilder for CapacityContainerBuilder<C>
impl<C> ContainerBuilder for CapacityContainerBuilder<C>
Source§fn extract(&mut self) -> Option<&mut C>
fn extract(&mut self) -> Option<&mut C>
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 C>
fn finish(&mut self) -> Option<&mut C>
Extract assembled containers and any unfinished data. Should
be called repeatedly until it returns
None
.Source§impl<C> Debug for CapacityContainerBuilder<C>where
C: Debug,
impl<C> Debug for CapacityContainerBuilder<C>where
C: Debug,
Source§impl<C> Default for CapacityContainerBuilder<C>where
C: Default,
impl<C> Default for CapacityContainerBuilder<C>where
C: Default,
Source§fn default() -> CapacityContainerBuilder<C>
fn default() -> CapacityContainerBuilder<C>
Returns the “default value” for a type. Read more