pub enum DaftError {
TypeError(String),
RuntimeError(String),
}Expand description
Errors produced by extension scalar functions.
Variants§
TypeError(String)
Errors produced by the extension’s type system.
RuntimeError(String)
Errors produced by the extension’s runtime logic.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DaftError
impl RefUnwindSafe for DaftError
impl Send for DaftError
impl Sync for DaftError
impl Unpin for DaftError
impl UnsafeUnpin for DaftError
impl UnwindSafe for DaftError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more