[][src]Struct ckb_chain_spec::SystemCell

pub struct SystemCell {
    pub create_type_id: bool,
    pub capacity: Option<u64>,
    pub file: Resource,
}

TODO(doc): @zhangsoledad

Fields

create_type_id: bool

TODO(doc): @zhangsoledad

capacity: Option<u64>

TODO(doc): @zhangsoledad

file: Resource

TODO(doc): @zhangsoledad

Trait Implementations

impl Clone for SystemCell[src]

impl Debug for SystemCell[src]

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

impl Eq for SystemCell[src]

impl PartialEq<SystemCell> for SystemCell[src]

impl Serialize for SystemCell[src]

impl StructuralEq for SystemCell[src]

impl StructuralPartialEq for SystemCell[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsAny for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,