pub struct Address {
pub public_key: PublicKey,
pub addr_byte: [u8; 21],
pub addr_string: String,
}
Expand description
FilecoinApp address (includes pubkey and the corresponding ss58 address)
Fields§
§public_key: PublicKey
Public Key
addr_byte: [u8; 21]
Address byte format
addr_string: String
Address string format
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