[][src]Struct casperlabs_contract_ffi::value::contract::Contract

pub struct Contract { /* fields omitted */ }

Methods

impl Contract[src]

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

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

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

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

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

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

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

Trait Implementations

impl ToBytes for Contract[src]

impl FromBytes for Contract[src]

impl Debug for Contract[src]

impl PartialEq<Contract> for Contract[src]

impl Eq for Contract[src]

impl TryFrom<Value> for Contract[src]

type Error = String

The type returned in the event of a conversion error.

impl From<Contract> for Value[src]

impl Clone for Contract[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for Contract

impl Sync for Contract

impl Send for Contract

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> Same<T> for T

type Output = T

Should always be Self