Struct unc_primitives::views::ContractCodeView
source · pub struct ContractCodeView {
pub code: Vec<u8>,
pub hash: CryptoHash,
}Expand description
A view of the contract code.
Fields§
§code: Vec<u8>§hash: CryptoHashTrait Implementations§
source§impl Clone for ContractCodeView
impl Clone for ContractCodeView
source§fn clone(&self) -> ContractCodeView
fn clone(&self) -> ContractCodeView
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ContractCodeView
impl Debug for ContractCodeView
source§impl<'de> Deserialize<'de> for ContractCodeView
impl<'de> Deserialize<'de> for ContractCodeView
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<ContractCode> for ContractCodeView
impl From<ContractCode> for ContractCodeView
source§fn from(contract_code: ContractCode) -> Self
fn from(contract_code: ContractCode) -> Self
Converts to this type from the input type.
source§impl From<ContractCodeView> for ContractCode
impl From<ContractCodeView> for ContractCode
source§fn from(contract_code: ContractCodeView) -> Self
fn from(contract_code: ContractCodeView) -> Self
Converts to this type from the input type.
source§impl PartialEq for ContractCodeView
impl PartialEq for ContractCodeView
source§fn eq(&self, other: &ContractCodeView) -> bool
fn eq(&self, other: &ContractCodeView) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ContractCodeView
impl Serialize for ContractCodeView
impl Eq for ContractCodeView
impl StructuralPartialEq for ContractCodeView
Auto Trait Implementations§
impl Freeze for ContractCodeView
impl RefUnwindSafe for ContractCodeView
impl Send for ContractCodeView
impl Sync for ContractCodeView
impl Unpin for ContractCodeView
impl UnwindSafe for ContractCodeView
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more