pub struct AssertNormalized<W: ?Sized>(/* private fields */);Expand description
Wrapper for a Writer asserting it being Normalized.
Technically is no-op, only forcing the Writer to become Normalized
despite it actually doesn’t represent the one.
⚠️ WARNING: Should be used only in case you are absolutely sure, that incoming events will be emitted in a
Normalizedorder. For example, in casemax_concurrent_scenarios()is set to1.
Implementations§
Source§impl<Writer> AssertNormalized<Writer>
impl<Writer> AssertNormalized<Writer>
Sourcepub const fn new(writer: Writer) -> Self
pub const fn new(writer: Writer) -> Self
Creates a new no-op AssertNormalized wrapper forcing Normalized
implementation.
⚠️ WARNING: Should be used only in case you are absolutely sure, that incoming events will be emitted in a
Normalizedorder. For example, in casemax_concurrent_scenarios()is set to1.
Trait Implementations§
Source§impl<W, Wr, Val> Arbitrary<W, Val> for AssertNormalized<Wr>
impl<W, Wr, Val> Arbitrary<W, Val> for AssertNormalized<Wr>
Source§impl<W: Clone + ?Sized> Clone for AssertNormalized<W>
impl<W: Clone + ?Sized> Clone for AssertNormalized<W>
Source§fn clone(&self) -> AssertNormalized<W>
fn clone(&self) -> AssertNormalized<W>
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<W: ?Sized> Deref for AssertNormalized<W>
impl<W: ?Sized> Deref for AssertNormalized<W>
Source§impl<W, Wr> Stats<W> for AssertNormalized<Wr>
impl<W, Wr> Stats<W> for AssertNormalized<Wr>
Source§fn retried_steps(&self) -> usize
fn retried_steps(&self) -> usize
Returns number of retried
Steps.Source§fn parsing_errors(&self) -> usize
fn parsing_errors(&self) -> usize
Returns number of parsing errors.
Source§fn hook_errors(&self) -> usize
fn hook_errors(&self) -> usize
Returns number of failed
Scenario hooks.Source§fn execution_has_failed(&self) -> bool
fn execution_has_failed(&self) -> bool
Indicates whether there were failures/errors during execution.
impl<W: Copy + ?Sized> Copy for AssertNormalized<W>
impl<Wr: NonTransforming> NonTransforming for AssertNormalized<Wr>
impl<Writer> Normalized for AssertNormalized<Writer>
Auto Trait Implementations§
impl<W> Freeze for AssertNormalized<W>
impl<W> RefUnwindSafe for AssertNormalized<W>where
W: RefUnwindSafe + ?Sized,
impl<W> Send for AssertNormalized<W>
impl<W> Sync for AssertNormalized<W>
impl<W> Unpin for AssertNormalized<W>
impl<W> UnsafeUnpin for AssertNormalized<W>where
W: UnsafeUnpin + ?Sized,
impl<W> UnwindSafe for AssertNormalized<W>where
W: UnwindSafe + ?Sized,
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> Ext for T
impl<T> Ext for T
Source§fn assert_normalized(self) -> AssertNormalized<T>
fn assert_normalized(self) -> AssertNormalized<T>
Source§fn normalized<W>(self) -> Normalize<W, T>
fn normalized<W>(self) -> Normalize<W, T>
Source§fn summarized(self) -> Summarize<T>
fn summarized(self) -> Summarize<T>
Source§fn fail_on_skipped(self) -> FailOnSkipped<T>
fn fail_on_skipped(self) -> FailOnSkipped<T>
Source§fn fail_on_skipped_with<F>(self, with: F) -> FailOnSkipped<T, F>
fn fail_on_skipped_with<F>(self, with: F) -> FailOnSkipped<T, F>
Source§fn repeat_skipped<W>(self) -> Repeat<W, T>
fn repeat_skipped<W>(self) -> Repeat<W, T>
Source§fn repeat_failed<W>(self) -> Repeat<W, T>
fn repeat_failed<W>(self) -> Repeat<W, T>
Source§fn repeat_if<W, F>(self, filter: F) -> Repeat<W, T, F>
fn repeat_if<W, F>(self, filter: F) -> Repeat<W, T, F>
Wraps this
Writer to re-output filtered events at the end of an
output.Source§fn tee<W, Wr>(self, other: Wr) -> Tee<T, Wr>where
Wr: Writer<W>,
fn tee<W, Wr>(self, other: Wr) -> Tee<T, Wr>where
Wr: Writer<W>,
Attaches the provided
other Writer to the current one for passing
events to both of them simultaneously.Source§fn discard_arbitrary_writes(self) -> Arbitrary<T>
fn discard_arbitrary_writes(self) -> Arbitrary<T>
Wraps this
Writer into a discard::Arbitrary one, providing a
no-op ArbitraryWriter implementation. Read moreSource§fn discard_stats_writes(self) -> Stats<T>
fn discard_stats_writes(self) -> Stats<T>
Wraps this
Writer into a discard::Stats one, providing a no-op
StatsWriter implementation returning only 0. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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