[][src]Enum godcoin::script::op::OpFrame

pub enum OpFrame {
    False,
    True,
    PubKey(PublicKey),
    OpNot,
    OpIf,
    OpElse,
    OpEndIf,
    OpReturn,
    OpCheckSig,
    OpCheckSigFastFail,
    OpCheckMultiSig(u8u8),
    OpCheckMultiSigFastFail(u8u8),
}

Variants

False
True
PubKey(PublicKey)
OpNot
OpIf
OpElse
OpEndIf
OpReturn
OpCheckSig
OpCheckSigFastFail
OpCheckMultiSig(u8u8)
OpCheckMultiSigFastFail(u8u8)

Trait Implementations

impl Debug for OpFrame[src]

impl From<bool> for OpFrame[src]

impl PartialEq<OpFrame> for OpFrame[src]

impl StructuralPartialEq for OpFrame[src]

Auto Trait Implementations

impl RefUnwindSafe for OpFrame

impl Send for OpFrame

impl Sync for OpFrame

impl Unpin for OpFrame

impl UnwindSafe for OpFrame

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, 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.