pub enum InsightKind {
SqlSyntaxError,
MissingProperty(String),
TypeMismatch {
property: Option<String>,
expected: String,
},
UnknownDispatch {
property: String,
tried: String,
},
AuthRequired,
JsonParseError,
RateLimited,
Other,
}Variants§
SqlSyntaxError
MissingProperty(String)
TypeMismatch
UnknownDispatch
AuthRequired
JsonParseError
RateLimited
Other
Trait Implementations§
Source§impl Clone for InsightKind
impl Clone for InsightKind
Source§fn clone(&self) -> InsightKind
fn clone(&self) -> InsightKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InsightKind
impl Debug for InsightKind
Source§impl PartialEq for InsightKind
impl PartialEq for InsightKind
impl Eq for InsightKind
impl StructuralPartialEq for InsightKind
Auto Trait Implementations§
impl Freeze for InsightKind
impl RefUnwindSafe for InsightKind
impl Send for InsightKind
impl Sync for InsightKind
impl Unpin for InsightKind
impl UnsafeUnpin for InsightKind
impl UnwindSafe for InsightKind
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