[][src]Enum forest_vm::CodeID

pub enum CodeID {
    Init,
    Cron,
    Account,
    PaymentChannel,
    StoragePower,
    StorageMiner,
    StorageMarket,
    CustomCode(Cid),
}

CodeID is the reference to the code which is attached to the Actor state. There are builtin IDs and the option for custom code with a Cid

Variants

Init
Cron
Account
PaymentChannel
StoragePower
StorageMiner
StorageMarket
CustomCode(Cid)

Implementations

impl CodeID[src]

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

Returns true if cid is builtin Actor

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

Returns true if cid is singleton Actor

Trait Implementations

impl Clone for CodeID[src]

impl Debug for CodeID[src]

impl Eq for CodeID[src]

impl PartialEq<CodeID> for CodeID[src]

impl StructuralEq for CodeID[src]

impl StructuralPartialEq for CodeID[src]

Auto Trait Implementations

impl RefUnwindSafe for CodeID

impl Send for CodeID

impl Sync for CodeID

impl Unpin for CodeID

impl UnwindSafe for CodeID

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.