[][src]Enum grin_core::core::transaction::Inputs

pub enum Inputs {
    CommitOnly(Vec<CommitWrapper>),
    FeaturesAndCommit(Vec<Input>),
}

Wrapper around a vec of inputs.

Variants

CommitOnly(Vec<CommitWrapper>)

Vec of commitments.

FeaturesAndCommit(Vec<Input>)

Vec of inputs.

Implementations

impl Inputs[src]

pub fn len(&self) -> usize[src]

Number of inputs.

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

Empty inputs?

pub fn version_str(&self) -> &str[src]

For debug purposes only. Do not rely on this for anything.

Trait Implementations

impl Clone for Inputs[src]

impl Debug for Inputs[src]

impl Default for Inputs[src]

impl<'de> Deserialize<'de> for Inputs[src]

impl<'_> From<&'_ [CommitWrapper]> for Inputs[src]

impl<'_> From<&'_ [Input]> for Inputs[src]

impl<'_> From<&'_ [OutputIdentifier]> for Inputs[src]

Used when converting to v2 compatibility. We want to preserve output features here.

impl<'_> From<&'_ Inputs> for Vec<CommitWrapper>[src]

impl From<Inputs> for Vec<CommitWrapper>[src]

impl PartialEq<Inputs> for Inputs[src]

impl Serialize for Inputs[src]

impl StructuralPartialEq for Inputs[src]

impl Writeable for Inputs[src]

Auto Trait Implementations

impl RefUnwindSafe for Inputs

impl Send for Inputs

impl Sync for Inputs

impl Unpin for Inputs

impl UnwindSafe for Inputs

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> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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, 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<T> UnsafeAny for T where
    T: Any