pub enum CypherError {
UndefinedVariable(String),
UndefinedParameter(String),
Unsupported(String),
TypeError(String),
Parse(String),
MissingLabelRelation(String),
Storage(String),
}Variants§
UndefinedVariable(String)
UndefinedParameter(String)
Unsupported(String)
TypeError(String)
Parse(String)
MissingLabelRelation(String)
Storage(String)
Trait Implementations§
Source§impl Debug for CypherError
impl Debug for CypherError
Source§impl Display for CypherError
impl Display for CypherError
Source§impl Error for CypherError
impl Error for CypherError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<AgtypeConversionError> for CypherError
impl From<AgtypeConversionError> for CypherError
Source§fn from(err: AgtypeConversionError) -> Self
fn from(err: AgtypeConversionError) -> Self
Converts to this type from the input type.
Source§impl From<GraphStoreError> for CypherError
impl From<GraphStoreError> for CypherError
Source§fn from(err: GraphStoreError) -> Self
fn from(err: GraphStoreError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for CypherError
impl From<ParseError> for CypherError
Source§fn from(err: ParseError) -> Self
fn from(err: ParseError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CypherError
impl PartialEq for CypherError
impl StructuralPartialEq for CypherError
Auto Trait Implementations§
impl Freeze for CypherError
impl RefUnwindSafe for CypherError
impl Send for CypherError
impl Sync for CypherError
impl Unpin for CypherError
impl UnsafeUnpin for CypherError
impl UnwindSafe for CypherError
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