pub struct ExpectableInner<S, A> {
pub state: S,
pub aux: A,
/* private fields */
}
Expand description
Inner state for the Expectable
helper type
Fields§
§state: S
§aux: A
Auto Trait Implementations§
impl<S, A> Freeze for ExpectableInner<S, A>
impl<S, A> RefUnwindSafe for ExpectableInner<S, A>where
S: RefUnwindSafe,
A: RefUnwindSafe,
impl<S, A> Send for ExpectableInner<S, A>
impl<S, A> Sync for ExpectableInner<S, A>
impl<S, A> Unpin for ExpectableInner<S, A>
impl<S, A> UnwindSafe for ExpectableInner<S, A>where
S: UnwindSafe,
A: 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