Enum polar_core::error::RuntimeError [−][src]
pub enum RuntimeError {
ArithmeticError {
msg: String,
},
Serialization {
msg: String,
},
Unsupported {
msg: String,
},
TypeError {
msg: String,
stack_trace: Option<String>,
},
UnboundVariable {
sym: Symbol,
},
StackOverflow {
msg: String,
},
QueryTimeout {
msg: String,
},
Application {
msg: String,
stack_trace: Option<String>,
},
FileLoading {
msg: String,
},
IncompatibleBindings {
msg: String,
},
}Variants
Show fields
Fields of ArithmeticError
msg: StringShow fields
Fields of Serialization
msg: StringShow fields
Fields of Unsupported
msg: StringShow fields
Fields of UnboundVariable
sym: SymbolShow fields
Fields of StackOverflow
msg: StringShow fields
Fields of QueryTimeout
msg: StringShow fields
Fields of FileLoading
msg: StringShow fields
Fields of IncompatibleBindings
msg: StringImplementations
Trait Implementations
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
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for RuntimeErrorimpl Send for RuntimeErrorimpl Sync for RuntimeErrorimpl Unpin for RuntimeErrorimpl UnwindSafe for RuntimeErrorBlanket Implementations
Mutably borrows from an owned value. Read more