[−][src]Struct casperlabs_engine_shared::contract::Contract
Implementations
impl Contract[src]
pub fn new(
bytes: Vec<u8>,
named_keys: BTreeMap<String, Key>,
protocol_version: ProtocolVersion
) -> Self[src]
bytes: Vec<u8>,
named_keys: BTreeMap<String, Key>,
protocol_version: ProtocolVersion
) -> Self
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]
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>[src]
fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>[src]
impl PartialEq<Contract> for Contract[src]
impl StructuralEq for Contract[src]
impl StructuralPartialEq for Contract[src]
impl ToBytes for Contract[src]
fn to_bytes(&self) -> Result<Vec<u8>, Error>[src]
fn serialized_length(&self) -> usize[src]
fn into_bytes(self) -> Result<Vec<u8>, Error>[src]
impl TryFrom<StoredValue> for Contract[src]
type Error = TypeMismatch
The type returned in the event of a conversion error.
fn try_from(stored_value: StoredValue) -> Result<Self, Self::Error>[src]
Auto Trait Implementations
impl RefUnwindSafe for Contract
impl Send for Contract
impl Sync for Contract
impl Unpin for Contract
impl UnwindSafe for Contract
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[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]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,