pub struct GetAddressResponse {
pub address: String,
pub path: String,
pub public_key: String,
}
Expand description
Response structure for address generation containing the address, derivation path, and public key.
Fields§
§address: String
The generated Bitcoin address as a string
path: String
The derivation path used to generate the address
public_key: String
The hexadecimal representation of the public key
Trait Implementations§
Source§impl Debug for GetAddressResponse
impl Debug for GetAddressResponse
Source§impl<'de> Deserialize<'de> for GetAddressResponse
impl<'de> Deserialize<'de> for GetAddressResponse
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 GetAddressResponse
impl RefUnwindSafe for GetAddressResponse
impl Send for GetAddressResponse
impl Sync for GetAddressResponse
impl Unpin for GetAddressResponse
impl UnwindSafe for GetAddressResponse
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