pub enum SendReturn {
Void(DynMethodBuilder<()>),
Bool(DynMethodBuilder<bool>),
U256(DynMethodBuilder<U256>),
Address(DynMethodBuilder<Address>),
}Variants§
Void(DynMethodBuilder<()>)
Bool(DynMethodBuilder<bool>)
U256(DynMethodBuilder<U256>)
Address(DynMethodBuilder<Address>)
Trait Implementations§
Source§impl From<MethodBuilder<DynTransport, ()>> for SendReturn
impl From<MethodBuilder<DynTransport, ()>> for SendReturn
Source§fn from(builder: DynMethodBuilder<()>) -> Self
fn from(builder: DynMethodBuilder<()>) -> Self
Converts to this type from the input type.
Source§impl From<MethodBuilder<DynTransport, H160>> for SendReturn
impl From<MethodBuilder<DynTransport, H160>> for SendReturn
Source§fn from(builder: DynMethodBuilder<Address>) -> Self
fn from(builder: DynMethodBuilder<Address>) -> Self
Converts to this type from the input type.
Source§impl From<MethodBuilder<DynTransport, U256>> for SendReturn
impl From<MethodBuilder<DynTransport, U256>> for SendReturn
Source§fn from(builder: DynMethodBuilder<U256>) -> Self
fn from(builder: DynMethodBuilder<U256>) -> Self
Converts to this type from the input type.
Source§impl From<MethodBuilder<DynTransport, bool>> for SendReturn
impl From<MethodBuilder<DynTransport, bool>> for SendReturn
Source§fn from(builder: DynMethodBuilder<bool>) -> Self
fn from(builder: DynMethodBuilder<bool>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SendReturn
impl !RefUnwindSafe for SendReturn
impl Send for SendReturn
impl Sync for SendReturn
impl Unpin for SendReturn
impl !UnwindSafe for SendReturn
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