Struct fuels_programs::contract::CompiledContract
source · pub struct CompiledContract {
pub raw: Vec<u8>,
pub salt: Salt,
pub storage_slots: Vec<StorageSlot>,
}Expand description
A compiled representation of a contract.
Fields§
§raw: Vec<u8>§salt: Salt§storage_slots: Vec<StorageSlot>Trait Implementations§
source§impl Clone for CompiledContract
impl Clone for CompiledContract
source§fn clone(&self) -> CompiledContract
fn clone(&self) -> CompiledContract
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 CompiledContract
impl Debug for CompiledContract
source§impl Default for CompiledContract
impl Default for CompiledContract
source§fn default() -> CompiledContract
fn default() -> CompiledContract
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CompiledContract
impl Send for CompiledContract
impl Sync for CompiledContract
impl Unpin for CompiledContract
impl UnwindSafe for CompiledContract
Blanket Implementations§
source§impl<T> AnyDebug for Twhere
T: Any + Debug,
impl<T> AnyDebug for Twhere
T: Any + Debug,
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any.