Enum avm_server::HostImportError [−]
pub enum HostImportError {
MismatchWValues(Type, Value),
MismatchWValuesCount,
LifterError(LiError),
LowererError(LoError),
RecordNotFound(RecordResolvableError),
InvalidUTF8String(FromUtf8Error),
}Variants
An error occurred when host functions tries to lift IValues from WValues and the latter has different type.
An error occurred when a host functions tries to lift IValues from WValues and the latter is not enough for that.
InvalidUTF8String(FromUtf8Error)Trait Implementations
impl Debug for HostImportError
impl Debug for HostImportErrorimpl Display for HostImportError
impl Display for HostImportErrorimpl Error for HostImportError
impl Error for HostImportErrorimpl From<FromUtf8Error> for HostImportError
impl From<FromUtf8Error> for HostImportErrorpub fn from(source: FromUtf8Error) -> HostImportError
pub fn from(source: FromUtf8Error) -> HostImportErrorPerforms the conversion.
impl From<LiError> for HostImportError
impl From<LiError> for HostImportErrorpub fn from(source: LiError) -> HostImportError
pub fn from(source: LiError) -> HostImportErrorPerforms the conversion.
impl From<LoError> for HostImportError
impl From<LoError> for HostImportErrorpub fn from(source: LoError) -> HostImportError
pub fn from(source: LoError) -> HostImportErrorPerforms the conversion.
impl From<RecordResolvableError> for HostImportError
impl From<RecordResolvableError> for HostImportErrorpub fn from(source: RecordResolvableError) -> HostImportError
pub fn from(source: RecordResolvableError) -> HostImportErrorPerforms the conversion.
Auto Trait Implementations
impl RefUnwindSafe for HostImportErrorimpl Send for HostImportErrorimpl Sync for HostImportErrorimpl Unpin for HostImportErrorimpl UnwindSafe for HostImportError