Enum near_vm_errors::CompilationError [−][src]
pub enum CompilationError {
CodeDoesNotExist {
account_id: AccountId,
},
PrepareError(PrepareError),
WasmerCompileError {
msg: String,
},
UnsupportedCompiler {
msg: String,
},
}Variants
CodeDoesNotExist
Fields
account_id: AccountIdPrepareError(PrepareError)
Tuple Fields
0: PrepareErrorWasmerCompileError
Fields
msg: StringUnsupportedCompiler
Fields
msg: StringTrait Implementations
impl BorshSerialize for CompilationError where
AccountId: BorshSerialize,
PrepareError: BorshSerialize,
String: BorshSerialize,
String: BorshSerialize,
impl BorshSerialize for CompilationError where
AccountId: BorshSerialize,
PrepareError: BorshSerialize,
String: BorshSerialize,
String: BorshSerialize,
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CompilationError
impl Send for CompilationError
impl Sync for CompilationError
impl Unpin for CompilationError
impl UnwindSafe for CompilationError
Blanket Implementations
Mutably borrows from an owned value. Read more