[][src]Enum bdk::descriptor::policy::Satisfaction

pub enum Satisfaction {
    Partial {
        n: usize,
        m: usize,
        items: Vec<usize>,
        conditions: ConditionMap,
    },
    PartialComplete {
        n: usize,
        m: usize,
        items: Vec<usize>,
        conditions: FoldedConditionMap,
    },
    Complete {
        condition: Condition,
    },
    None,
}

Represent if and how much a policy item is satisfied by the wallet's descriptor

Variants

Partial

Only a partial satisfaction of some kind of threshold policy

Fields of Partial

n: usize

Total number of items

m: usize

Threshold

items: Vec<usize>

The items that can be satisfied by the descriptor

conditions: ConditionMap

Extra conditions that also need to be satisfied

PartialComplete

Can reach the threshold of some kind of threshold policy

Fields of PartialComplete

n: usize

Total number of items

m: usize

Threshold

items: Vec<usize>

The items that can be satisfied by the descriptor

conditions: FoldedConditionMap

Extra conditions that also need to be satisfied

Complete

Can satisfy the policy item

Fields of Complete

condition: Condition

Extra conditions that also need to be satisfied

None

Cannot satisfy or contribute to the policy item

Implementations

impl Satisfaction[src]

pub fn is_leaf(&self) -> bool[src]

Trait Implementations

impl Clone for Satisfaction[src]

impl Debug for Satisfaction[src]

impl From<bool> for Satisfaction[src]

impl Serialize for Satisfaction[src]

Auto Trait Implementations

impl RefUnwindSafe for Satisfaction

impl Send for Satisfaction

impl Sync for Satisfaction

impl Unpin for Satisfaction

impl UnwindSafe for Satisfaction

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,