pub struct Bindings {
pub state: VarId,
pub events: VarId,
pub result: VarId,
}Expand description
The three names a test’s expectations may use. They are plain data — a folded state, the events a command produced, and the result of the last one — so every backend can hold them.
Fields§
§state: VarId§events: VarId§result: VarIdTrait Implementations§
Auto Trait Implementations§
impl Freeze for Bindings
impl RefUnwindSafe for Bindings
impl Send for Bindings
impl Sync for Bindings
impl Unpin for Bindings
impl UnwindSafe for Bindings
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