[][src]Struct lnpbp::rgb::validation::Status

pub struct Status {
    pub unresolved_txids: Vec<Txid>,
    pub failures: Vec<Failure>,
    pub warnings: Vec<Warning>,
    pub info: Vec<Info>,
}

Fields

unresolved_txids: Vec<Txid>failures: Vec<Failure>warnings: Vec<Warning>info: Vec<Info>

Implementations

impl Status[src]

pub fn from_error(v: Failure) -> Self[src]

impl Status[src]

pub fn new() -> Self[src]

pub fn with_failure(failure: Failure) -> Self[src]

pub fn add_failure(&mut self, failure: Failure) -> &Self[src]

pub fn add_warning(&mut self, warning: Warning) -> &Self[src]

pub fn add_info(&mut self, info: Info) -> &Self[src]

pub fn validity(&self) -> Validity[src]

Trait Implementations

impl AddAssign<Status> for Status[src]

impl Clone for Status[src]

impl Debug for Status[src]

impl Default for Status[src]

impl Display for Status[src]

impl FromIterator<Failure> for Status[src]

Auto Trait Implementations

impl RefUnwindSafe for Status

impl Send for Status

impl Sync for Status

impl Unpin for Status

impl UnwindSafe for Status

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> Same<T> for T

type Output = T

Should always be Self

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.

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