Enum wallet::descriptor::FullType[][src]

#[repr(u8)]pub enum FullType {
    Bare,
    Pk,
    Pkh,
    Sh,
    Wpkh,
    Wsh,
    ShWpkh,
    ShWsh,
    Tr,
}

Variants

Bare
Pk
Pkh
Sh
Wpkh
Wsh
ShWpkh
ShWsh
Tr

Implementations

impl FullType[src]

Trait Implementations

impl Clone for FullType[src]

impl Copy for FullType[src]

impl Debug for FullType[src]

impl Display for FullType[src]

impl Eq for FullType[src]

impl<Pk> From<Descriptor<Pk>> for FullType where
    Pk: MiniscriptKey
[src]

impl From<FullType> for ContentType[src]

impl From<FullType> for OuterType[src]

impl From<FullType> for InnerType[src]

impl From<FullType> for Category[src]

impl FromStr for FullType[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl Hash for FullType[src]

impl Ord for FullType[src]

impl PartialEq<FullType> for FullType[src]

impl PartialOrd<FullType> for FullType[src]

impl StrictDecode for FullType[src]

impl StrictEncode for FullType[src]

impl StructuralEq for FullType[src]

impl StructuralPartialEq for FullType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.