Struct dharitri_wasm::types::SendMoax
source · pub struct SendMoax<BigUint: BigUintApi> {
pub to: Address,
pub amount: BigUint,
pub data: BoxedBytes,
}Fields§
§to: Address§amount: BigUint§data: BoxedBytesTrait Implementations§
source§impl<FA, BigUint> EndpointResult<FA> for SendMoax<BigUint>where
BigUint: BigUintApi + 'static,
FA: EndpointFinishApi + SendApi<BigUint> + ErrorApi + Clone + 'static,
impl<FA, BigUint> EndpointResult<FA> for SendMoax<BigUint>where
BigUint: BigUintApi + 'static,
FA: EndpointFinishApi + SendApi<BigUint> + ErrorApi + Clone + 'static,
source§impl<BigUint: BigUintApi> TypeAbi for SendMoax<BigUint>
impl<BigUint: BigUintApi> TypeAbi for SendMoax<BigUint>
fn type_name() -> String
source§fn provide_type_descriptions<TDC: TypeDescriptionContainer>(_: &mut TDC)
fn provide_type_descriptions<TDC: TypeDescriptionContainer>(_: &mut TDC)
A type can provide more than its own description.
For instance, a struct can also provide the descriptions of the type of its fields.
TypeAbi doesn’t care for the exact accumulator type,
which is abstracted by the TypeDescriptionContainer trait.
Auto Trait Implementations§
impl<BigUint> RefUnwindSafe for SendMoax<BigUint>where
BigUint: RefUnwindSafe,
impl<BigUint> Send for SendMoax<BigUint>where
BigUint: Send,
impl<BigUint> Sync for SendMoax<BigUint>where
BigUint: Sync,
impl<BigUint> Unpin for SendMoax<BigUint>where
BigUint: Unpin,
impl<BigUint> UnwindSafe for SendMoax<BigUint>where
BigUint: 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