pub struct ValidateAddressParams {
pub asset_id: String,
pub address: String,
}
Expand description
struct for passing parameters to the method [validate_address
]
Fields§
§asset_id: String
The asset of the address
address: String
The address to validate
Implementations§
Source§impl ValidateAddressParams
impl ValidateAddressParams
Sourcepub fn builder() -> ValidateAddressParamsBuilder
pub fn builder() -> ValidateAddressParamsBuilder
Create an instance of ValidateAddressParams
using the builder syntax
Trait Implementations§
Source§impl Clone for ValidateAddressParams
impl Clone for ValidateAddressParams
Source§fn clone(&self) -> ValidateAddressParams
fn clone(&self) -> ValidateAddressParams
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 moreAuto Trait Implementations§
impl Freeze for ValidateAddressParams
impl RefUnwindSafe for ValidateAddressParams
impl Send for ValidateAddressParams
impl Sync for ValidateAddressParams
impl Unpin for ValidateAddressParams
impl UnwindSafe for ValidateAddressParams
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