pub struct CreateAssetTransferV1Params {
pub amount: String,
pub asset: String,
pub timestamp: i64,
pub type: String,
pub from_symbol: Option<String>,
pub recv_window: Option<i64>,
pub to_symbol: Option<String>,
}Expand description
struct for passing parameters to the method create_asset_transfer_v1
Fields§
§amount: String§asset: String§timestamp: i64§type: String§from_symbol: Option<String>§recv_window: Option<i64>§to_symbol: Option<String>Trait Implementations§
Source§impl Clone for CreateAssetTransferV1Params
impl Clone for CreateAssetTransferV1Params
Source§fn clone(&self) -> CreateAssetTransferV1Params
fn clone(&self) -> CreateAssetTransferV1Params
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateAssetTransferV1Params
impl Debug for CreateAssetTransferV1Params
Source§impl Default for CreateAssetTransferV1Params
impl Default for CreateAssetTransferV1Params
Source§fn default() -> CreateAssetTransferV1Params
fn default() -> CreateAssetTransferV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateAssetTransferV1Params
impl RefUnwindSafe for CreateAssetTransferV1Params
impl Send for CreateAssetTransferV1Params
impl Sync for CreateAssetTransferV1Params
impl Unpin for CreateAssetTransferV1Params
impl UnwindSafe for CreateAssetTransferV1Params
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