Enum sapio_miniscript::descriptor::Wildcard[][src]

pub enum Wildcard {
    None,
    Unhardened,
    Hardened,
}

Whether a descriptor has a wildcard in it

Variants

None

No wildcard

Unhardened

Unhardened wildcard, e.g. *

Hardened

Unhardened wildcard, e.g. *h

Trait Implementations

impl Clone for Wildcard[src]

impl Copy for Wildcard[src]

impl Debug for Wildcard[src]

impl Eq for Wildcard[src]

impl Hash for Wildcard[src]

impl Ord for Wildcard[src]

impl PartialEq<Wildcard> for Wildcard[src]

impl PartialOrd<Wildcard> for Wildcard[src]

impl StructuralEq for Wildcard[src]

impl StructuralPartialEq for Wildcard[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, 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.