[][src]Struct bitcoin_cash::TaggedOp

pub struct TaggedOp {
    pub op: Op,
    pub src_file: Cow<'static, str>,
    pub src_line: u32,
    pub src_column: u32,
    pub src_code: Vec<(u32, Cow<'static, str>)>,
    pub pushed_names: Option<Vec<Option<Cow<'static, str>>>>,
    pub alt_pushed_names: Option<Vec<Option<Cow<'static, str>>>>,
}

Fields

op: Opsrc_file: Cow<'static, str>src_line: u32src_column: u32src_code: Vec<(u32, Cow<'static, str>)>pushed_names: Option<Vec<Option<Cow<'static, str>>>>alt_pushed_names: Option<Vec<Option<Cow<'static, str>>>>

Implementations

impl TaggedOp[src]

pub fn from_op(op: Op) -> Self[src]

Trait Implementations

impl Clone for TaggedOp[src]

impl Debug for TaggedOp[src]

impl Eq for TaggedOp[src]

impl PartialEq<TaggedOp> for TaggedOp[src]

impl StructuralEq for TaggedOp[src]

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