pub struct GenerateToAddressResponse {
pub value: Vec<Value>,
}Expand description
Response for the GenerateToAddress RPC method
This method returns an array wrapped in a transparent struct.
Fields§
§value: Vec<Value>Wrapped array value
Trait Implementations§
Source§impl Clone for GenerateToAddressResponse
impl Clone for GenerateToAddressResponse
Source§fn clone(&self) -> GenerateToAddressResponse
fn clone(&self) -> GenerateToAddressResponse
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 GenerateToAddressResponse
impl Debug for GenerateToAddressResponse
Source§impl<'de> Deserialize<'de> for GenerateToAddressResponse
impl<'de> Deserialize<'de> for GenerateToAddressResponse
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<GenerateToAddressResponse> for Vec<Value>
impl From<GenerateToAddressResponse> for Vec<Value>
Source§fn from(wrapper: GenerateToAddressResponse) -> Self
fn from(wrapper: GenerateToAddressResponse) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for GenerateToAddressResponse
Auto Trait Implementations§
impl Freeze for GenerateToAddressResponse
impl RefUnwindSafe for GenerateToAddressResponse
impl Send for GenerateToAddressResponse
impl Sync for GenerateToAddressResponse
impl Unpin for GenerateToAddressResponse
impl UnwindSafe for GenerateToAddressResponse
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