Enum bpstd::DerivationParseError 
source · pub enum DerivationParseError {
    InvalidIndex(String, IndexParseError),
    InvalidFormat(String),
}Variants§
InvalidIndex(String, IndexParseError)
unable to parse derivation path ‘{0}’ - {1}
InvalidFormat(String)
invalid derivation path format ‘{0}’
Trait Implementations§
source§impl Clone for DerivationParseError
 
impl Clone for DerivationParseError
source§fn clone(&self) -> DerivationParseError
 
fn clone(&self) -> DerivationParseError
Returns a copy 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 DerivationParseError
 
impl Debug for DerivationParseError
source§impl Display for DerivationParseError
 
impl Display for DerivationParseError
source§impl Error for DerivationParseError
 
impl Error for DerivationParseError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DerivationParseError> for OriginParseError
 
impl From<DerivationParseError> for OriginParseError
source§fn from(v: DerivationParseError) -> Self
 
fn from(v: DerivationParseError) -> Self
Converts to this type from the input type.
source§impl From<DerivationParseError> for String
 
impl From<DerivationParseError> for String
source§fn from(err: DerivationParseError) -> Self
 
fn from(err: DerivationParseError) -> Self
Converts to this type from the input type.
source§impl PartialEq for DerivationParseError
 
impl PartialEq for DerivationParseError
source§fn eq(&self, other: &DerivationParseError) -> bool
 
fn eq(&self, other: &DerivationParseError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for DerivationParseError
impl StructuralEq for DerivationParseError
impl StructuralPartialEq for DerivationParseError
Auto Trait Implementations§
impl RefUnwindSafe for DerivationParseError
impl Send for DerivationParseError
impl Sync for DerivationParseError
impl Unpin for DerivationParseError
impl UnwindSafe for DerivationParseError
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
§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.