Struct dharitri_wasm::types::SendDct
source · pub struct SendDct<BigUint: BigUintApi> {
pub to: Address,
pub token_name: BoxedBytes,
pub amount: BigUint,
pub data: BoxedBytes,
}Fields§
§to: Address§token_name: BoxedBytes§amount: BigUint§data: BoxedBytesTrait Implementations§
source§impl<FA, BigUint> EndpointResult<FA> for SendDct<BigUint>where
BigUint: BigUintApi + 'static,
FA: EndpointFinishApi + SendApi<BigUint> + ErrorApi + Clone + 'static,
impl<FA, BigUint> EndpointResult<FA> for SendDct<BigUint>where
BigUint: BigUintApi + 'static,
FA: EndpointFinishApi + SendApi<BigUint> + ErrorApi + Clone + 'static,
source§impl<BigUint: BigUintApi> TypeAbi for SendDct<BigUint>
impl<BigUint: BigUintApi> TypeAbi for SendDct<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 SendDct<BigUint>where
BigUint: RefUnwindSafe,
impl<BigUint> Send for SendDct<BigUint>where
BigUint: Send,
impl<BigUint> Sync for SendDct<BigUint>where
BigUint: Sync,
impl<BigUint> Unpin for SendDct<BigUint>where
BigUint: Unpin,
impl<BigUint> UnwindSafe for SendDct<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