pub struct Address {
pub public_key: Vec<u8>,
pub address: Vec<u8>,
pub chain_code: Option<Vec<u8>>,
}
Fields§
§public_key: Vec<u8>
Secp256k1 pubkey bytes
address: Vec<u8>
Address bytes in raw UTF-8, without “0x” prefix
chain_code: Option<Vec<u8>>
Optional chain code bytes
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnwindSafe for Address
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