pub struct AccountPrivateKey {
pub schema_version: u8,
pub chain: String,
pub curve: String,
pub path: String,
pub format: Option<String>,
pub extended_private_key: Option<String>,
pub private_key_hex: String,
pub public_key_hex: String,
}Fields§
§schema_version: u8§chain: String§curve: String§path: String§format: Option<String>§extended_private_key: Option<String>§private_key_hex: String§public_key_hex: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for AccountPrivateKey
impl RefUnwindSafe for AccountPrivateKey
impl Send for AccountPrivateKey
impl Sync for AccountPrivateKey
impl Unpin for AccountPrivateKey
impl UnwindSafe for AccountPrivateKey
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