pub enum GraphStoreError {
UnknownGraph(String),
IdExhausted(String),
InvalidMutation(String),
InvalidQuery(String),
CorruptGraph(String),
InvalidPostingList(GraphPostingListError),
}Variants§
UnknownGraph(String)
IdExhausted(String)
InvalidMutation(String)
InvalidQuery(String)
CorruptGraph(String)
InvalidPostingList(GraphPostingListError)
Trait Implementations§
Source§impl Clone for GraphStoreError
impl Clone for GraphStoreError
Source§fn clone(&self) -> GraphStoreError
fn clone(&self) -> GraphStoreError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphStoreError
impl Debug for GraphStoreError
Source§impl Display for GraphStoreError
impl Display for GraphStoreError
impl Eq for GraphStoreError
Source§impl Error for GraphStoreError
impl Error for GraphStoreError
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<GraphPostingListError> for GraphStoreError
impl From<GraphPostingListError> for GraphStoreError
Source§fn from(source: GraphPostingListError) -> Self
fn from(source: GraphPostingListError) -> Self
Converts to this type from the input type.
Source§impl From<GraphStoreError> for CrossParadigmError
impl From<GraphStoreError> for CrossParadigmError
Source§fn from(source: GraphStoreError) -> Self
fn from(source: GraphStoreError) -> 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 PartialEq for GraphStoreError
impl PartialEq for GraphStoreError
impl StructuralPartialEq for GraphStoreError
Auto Trait Implementations§
impl Freeze for GraphStoreError
impl RefUnwindSafe for GraphStoreError
impl Send for GraphStoreError
impl Sync for GraphStoreError
impl Unpin for GraphStoreError
impl UnsafeUnpin for GraphStoreError
impl UnwindSafe for GraphStoreError
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