pub enum Slip10DeriveInputDto {
Seed(LocationDto),
Key(LocationDto),
}Expand description
SLIP10 derive input: either a seed blob or an extended parent key.
Variants§
Seed(LocationDto)
Read SLIP10 seed bytes from this location.
Key(LocationDto)
Read 65-byte extended SLIP10 key from this location.
Trait Implementations§
Source§impl Clone for Slip10DeriveInputDto
impl Clone for Slip10DeriveInputDto
Source§fn clone(&self) -> Slip10DeriveInputDto
fn clone(&self) -> Slip10DeriveInputDto
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Slip10DeriveInputDto
impl Debug for Slip10DeriveInputDto
Source§impl<'de> Deserialize<'de> for Slip10DeriveInputDto
impl<'de> Deserialize<'de> for Slip10DeriveInputDto
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 Slip10DeriveInputDto
impl RefUnwindSafe for Slip10DeriveInputDto
impl Send for Slip10DeriveInputDto
impl Sync for Slip10DeriveInputDto
impl Unpin for Slip10DeriveInputDto
impl UnsafeUnpin for Slip10DeriveInputDto
impl UnwindSafe for Slip10DeriveInputDto
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