pub struct WalletDisplayAddressResponse {
pub address: String,
}Expand description
Response for the WalletDisplayAddress RPC method
Fields§
§address: StringThe address as confirmed by the signer
Trait Implementations§
Source§impl Clone for WalletDisplayAddressResponse
impl Clone for WalletDisplayAddressResponse
Source§fn clone(&self) -> WalletDisplayAddressResponse
fn clone(&self) -> WalletDisplayAddressResponse
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 WalletDisplayAddressResponse
impl Debug for WalletDisplayAddressResponse
Source§impl<'de> Deserialize<'de> for WalletDisplayAddressResponse
impl<'de> Deserialize<'de> for WalletDisplayAddressResponse
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
Source§impl PartialEq for WalletDisplayAddressResponse
impl PartialEq for WalletDisplayAddressResponse
Source§fn eq(&self, other: &WalletDisplayAddressResponse) -> bool
fn eq(&self, other: &WalletDisplayAddressResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WalletDisplayAddressResponse
Auto Trait Implementations§
impl Freeze for WalletDisplayAddressResponse
impl RefUnwindSafe for WalletDisplayAddressResponse
impl Send for WalletDisplayAddressResponse
impl Sync for WalletDisplayAddressResponse
impl Unpin for WalletDisplayAddressResponse
impl UnwindSafe for WalletDisplayAddressResponse
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