[][src]Type Definition molt::types::MoltResult

type MoltResult = Result<Value, ResultCode>;

Molt's standard Result<T,E> type.

This is the most common result value returned by Molt code. The Ok type is Value, the standard Molt value type; the Err type is ResultCode, which encompasses the four exceptional Molt return values.