[][src]Struct casperlabs_engine_shared::contract::Contract

pub struct Contract { /* fields omitted */ }

Methods

impl Contract[src]

pub fn new(
    bytes: Vec<u8>,
    named_keys: BTreeMap<String, Key>,
    protocol_version: ProtocolVersion
) -> Self
[src]

pub fn named_keys_append(&mut self, keys: &mut BTreeMap<String, Key>)[src]

pub fn named_keys(&self) -> &BTreeMap<String, Key>[src]

pub fn named_keys_mut(&mut self) -> &mut BTreeMap<String, Key>[src]

pub fn destructure(self) -> (Vec<u8>, BTreeMap<String, Key>, ProtocolVersion)[src]

pub fn bytes(&self) -> &[u8][src]

pub fn protocol_version(&self) -> ProtocolVersion[src]

pub fn take_named_keys(self) -> BTreeMap<String, Key>[src]

Trait Implementations

impl Clone for Contract[src]

impl Debug for Contract[src]

impl Eq for Contract[src]

impl FromBytes for Contract[src]

impl PartialEq<Contract> for Contract[src]

impl StructuralEq for Contract[src]

impl StructuralPartialEq for Contract[src]

impl ToBytes for Contract[src]

impl TryFrom<StoredValue> for Contract[src]

type Error = TypeMismatch

The type returned in the event of a conversion error.

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