pub struct TxExpectMandos { /* private fields */ }
Implementations§
Source§impl TxExpectMandos
impl TxExpectMandos
pub fn new(status: u64) -> Self
pub fn add_out_value<T: TopEncode>(&mut self, out_val: &T)
pub fn set_message(&mut self, msg: &str)
Auto Trait Implementations§
impl Freeze for TxExpectMandos
impl RefUnwindSafe for TxExpectMandos
impl Send for TxExpectMandos
impl Sync for TxExpectMandos
impl Unpin for TxExpectMandos
impl UnwindSafe for TxExpectMandos
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> InterpretableFrom<T> for T
impl<T> InterpretableFrom<T> for T
fn interpret_from(from: T, _context: &InterpreterContext) -> T
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