pub enum RivetErrorKind {
Static(&'static RivetErrorSchema),
Dynamic {
group: String,
code: String,
default_message: String,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RivetErrorKind
impl Clone for RivetErrorKind
Auto Trait Implementations§
impl Freeze for RivetErrorKind
impl RefUnwindSafe for RivetErrorKind
impl Send for RivetErrorKind
impl Sync for RivetErrorKind
impl Unpin for RivetErrorKind
impl UnsafeUnpin for RivetErrorKind
impl UnwindSafe for RivetErrorKind
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