pub struct LegacyDaedalusPrivateKey(/* private fields */);Implementations§
Trait Implementations§
Source§impl AsRef<SecretKey<LegacyDaedalus>> for LegacyDaedalusPrivateKey
impl AsRef<SecretKey<LegacyDaedalus>> for LegacyDaedalusPrivateKey
Source§fn as_ref(&self) -> &SecretKey<LegacyDaedalus>
fn as_ref(&self) -> &SecretKey<LegacyDaedalus>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for LegacyDaedalusPrivateKey
impl Clone for LegacyDaedalusPrivateKey
Source§fn clone(&self) -> LegacyDaedalusPrivateKey
fn clone(&self) -> LegacyDaedalusPrivateKey
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 RawBytesEncoding for LegacyDaedalusPrivateKey
impl RawBytesEncoding for LegacyDaedalusPrivateKey
fn to_raw_bytes(&self) -> &[u8] ⓘ
fn from_raw_bytes( bytes: &[u8], ) -> Result<LegacyDaedalusPrivateKey, DeserializeError>
fn to_raw_hex(&self) -> String
fn from_raw_hex(hex_str: &str) -> Result<Self, DeserializeError>where
Self: Sized,
Auto Trait Implementations§
impl Freeze for LegacyDaedalusPrivateKey
impl RefUnwindSafe for LegacyDaedalusPrivateKey
impl Send for LegacyDaedalusPrivateKey
impl Sync for LegacyDaedalusPrivateKey
impl Unpin for LegacyDaedalusPrivateKey
impl UnsafeUnpin for LegacyDaedalusPrivateKey
impl UnwindSafe for LegacyDaedalusPrivateKey
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