pub enum StepOutput {
State(Rc<dyn Any>),
Compared(Option<Value>),
}Expand description
What a handler produced. A stimulus yields the whole next state, which is
opaque to the core — it is threaded between a file’s steps and replaced
wholesale, never compared, serialized, or inspected. A sensor yields the
value to compare against the document (None = no assertion).
Variants§
Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for StepOutput
impl !Send for StepOutput
impl !Sync for StepOutput
impl !UnwindSafe for StepOutput
impl Freeze for StepOutput
impl Unpin for StepOutput
impl UnsafeUnpin for StepOutput
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> 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