pub enum GraphPostingListError {
PayloadOutsideSupport {
doc_id: DocId,
},
ConflictingGraphNames {
doc_id: DocId,
left: String,
right: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for GraphPostingListError
impl Clone for GraphPostingListError
Source§fn clone(&self) -> GraphPostingListError
fn clone(&self) -> GraphPostingListError
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 GraphPostingListError
impl Debug for GraphPostingListError
Source§impl Display for GraphPostingListError
impl Display for GraphPostingListError
impl Eq for GraphPostingListError
Source§impl Error for GraphPostingListError
impl Error for GraphPostingListError
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<GraphPostingListError> for CrossParadigmError
impl From<GraphPostingListError> for CrossParadigmError
Source§fn from(source: GraphPostingListError) -> Self
fn from(source: GraphPostingListError) -> Self
Converts to this type from the input type.
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 PartialEq for GraphPostingListError
impl PartialEq for GraphPostingListError
impl StructuralPartialEq for GraphPostingListError
Auto Trait Implementations§
impl Freeze for GraphPostingListError
impl RefUnwindSafe for GraphPostingListError
impl Send for GraphPostingListError
impl Sync for GraphPostingListError
impl Unpin for GraphPostingListError
impl UnsafeUnpin for GraphPostingListError
impl UnwindSafe for GraphPostingListError
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