pub struct DerivationPathConfigV2 {
pub path: Vec<f64>,
pub partial: Option<bool>,
}Expand description
DerivationPathConfigV2 : Derivation path configuration
Fields§
§path: Vec<f64>Derivation path as array of numbers
partial: Option<bool>Whether this is a partial path
Implementations§
Source§impl DerivationPathConfigV2
impl DerivationPathConfigV2
Sourcepub fn new(path: Vec<f64>) -> DerivationPathConfigV2
pub fn new(path: Vec<f64>) -> DerivationPathConfigV2
Derivation path configuration
Trait Implementations§
Source§impl Clone for DerivationPathConfigV2
impl Clone for DerivationPathConfigV2
Source§fn clone(&self) -> DerivationPathConfigV2
fn clone(&self) -> DerivationPathConfigV2
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 Debug for DerivationPathConfigV2
impl Debug for DerivationPathConfigV2
Source§impl Default for DerivationPathConfigV2
impl Default for DerivationPathConfigV2
Source§fn default() -> DerivationPathConfigV2
fn default() -> DerivationPathConfigV2
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DerivationPathConfigV2
impl<'de> Deserialize<'de> for DerivationPathConfigV2
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
Source§impl PartialEq for DerivationPathConfigV2
impl PartialEq for DerivationPathConfigV2
Source§impl Serialize for DerivationPathConfigV2
impl Serialize for DerivationPathConfigV2
impl StructuralPartialEq for DerivationPathConfigV2
Auto Trait Implementations§
impl Freeze for DerivationPathConfigV2
impl RefUnwindSafe for DerivationPathConfigV2
impl Send for DerivationPathConfigV2
impl Sync for DerivationPathConfigV2
impl Unpin for DerivationPathConfigV2
impl UnwindSafe for DerivationPathConfigV2
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