pub struct ValidateAddressData {
pub is_valid: bool,
}Expand description
Inner data of the validate-address response.
Fields§
§is_valid: boolWhether the address is valid for the given blockchain.
Trait Implementations§
Source§impl Clone for ValidateAddressData
impl Clone for ValidateAddressData
Source§fn clone(&self) -> ValidateAddressData
fn clone(&self) -> ValidateAddressData
Returns a duplicate 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 ValidateAddressData
impl Debug for ValidateAddressData
Source§impl<'de> Deserialize<'de> for ValidateAddressData
impl<'de> Deserialize<'de> for ValidateAddressData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ValidateAddressData
impl RefUnwindSafe for ValidateAddressData
impl Send for ValidateAddressData
impl Sync for ValidateAddressData
impl Unpin for ValidateAddressData
impl UnsafeUnpin for ValidateAddressData
impl UnwindSafe for ValidateAddressData
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