pub struct GetReceivedByAddressResponse {
pub value: Amount,
}Expand description
Response for the GetReceivedByAddress RPC method
This method returns a primitive value wrapped in a transparent struct.
Fields§
§value: AmountWrapped primitive value
Trait Implementations§
Source§impl AsRef<Amount> for GetReceivedByAddressResponse
impl AsRef<Amount> for GetReceivedByAddressResponse
Source§impl Clone for GetReceivedByAddressResponse
impl Clone for GetReceivedByAddressResponse
Source§fn clone(&self) -> GetReceivedByAddressResponse
fn clone(&self) -> GetReceivedByAddressResponse
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 GetReceivedByAddressResponse
impl Debug for GetReceivedByAddressResponse
Source§impl Deref for GetReceivedByAddressResponse
impl Deref for GetReceivedByAddressResponse
Source§impl<'de> Deserialize<'de> for GetReceivedByAddressResponse
impl<'de> Deserialize<'de> for GetReceivedByAddressResponse
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 From<Amount> for GetReceivedByAddressResponse
impl From<Amount> for GetReceivedByAddressResponse
Source§impl From<GetReceivedByAddressResponse> for Amount
impl From<GetReceivedByAddressResponse> for Amount
Source§fn from(wrapper: GetReceivedByAddressResponse) -> Self
fn from(wrapper: GetReceivedByAddressResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetReceivedByAddressResponse
impl PartialEq for GetReceivedByAddressResponse
Source§fn eq(&self, other: &GetReceivedByAddressResponse) -> bool
fn eq(&self, other: &GetReceivedByAddressResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetReceivedByAddressResponse
Auto Trait Implementations§
impl Freeze for GetReceivedByAddressResponse
impl RefUnwindSafe for GetReceivedByAddressResponse
impl Send for GetReceivedByAddressResponse
impl Sync for GetReceivedByAddressResponse
impl Unpin for GetReceivedByAddressResponse
impl UnwindSafe for GetReceivedByAddressResponse
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