pub enum ExecutorError {
Show 26 variants
ReadOnlyCreate {
node_id: PhysicalNodeId,
},
ReadOnlyMerge {
node_id: PhysicalNodeId,
},
ReadOnlyDelete {
node_id: PhysicalNodeId,
},
ReadOnlySet {
node_id: PhysicalNodeId,
},
ReadOnlyRemove {
node_id: PhysicalNodeId,
},
ExpectedNodeForExpand {
var: String,
found: String,
},
ExpectedPropertyMap {
found: String,
},
GroupByNotLowered,
AggregateNotLowered,
UnsupportedCreateRelationshipRange,
MissingRelationshipType,
RelationshipCreateFailed {
src: u64,
dst: u64,
rel_type: String,
},
DeleteNodeWithRelationships {
node_id: NodeId,
},
DeleteRelationshipFailed {
rel_id: RelationshipId,
},
InvalidDeleteTarget {
found: String,
},
ExpectedNodeForRemoveLabels {
found: String,
},
UnboundVariableForRemove {
var: String,
},
ExpectedNodeForSetLabels {
found: String,
},
UnboundVariableForSet {
var: String,
},
InvalidSetTarget {
found: String,
},
UnsupportedRemoveTarget,
InvalidRemoveTarget {
found: String,
},
UnsupportedSetTarget,
ExpectedRelationshipForExpand {
var: String,
found: String,
},
QueryTimeout,
RuntimeError(String),
}Variants§
ReadOnlyCreate
Fields
§
node_id: PhysicalNodeIdReadOnlyMerge
Fields
§
node_id: PhysicalNodeIdReadOnlyDelete
Fields
§
node_id: PhysicalNodeIdReadOnlySet
Fields
§
node_id: PhysicalNodeIdReadOnlyRemove
Fields
§
node_id: PhysicalNodeIdExpectedNodeForExpand
ExpectedPropertyMap
GroupByNotLowered
AggregateNotLowered
UnsupportedCreateRelationshipRange
MissingRelationshipType
RelationshipCreateFailed
DeleteNodeWithRelationships
DeleteRelationshipFailed
Fields
§
rel_id: RelationshipIdInvalidDeleteTarget
ExpectedNodeForRemoveLabels
UnboundVariableForRemove
ExpectedNodeForSetLabels
UnboundVariableForSet
InvalidSetTarget
UnsupportedRemoveTarget
InvalidRemoveTarget
UnsupportedSetTarget
ExpectedRelationshipForExpand
QueryTimeout
RuntimeError(String)
Trait Implementations§
Source§impl Debug for ExecutorError
impl Debug for ExecutorError
Source§impl Display for ExecutorError
impl Display for ExecutorError
Source§impl Error for ExecutorError
impl Error for ExecutorError
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()
Auto Trait Implementations§
impl Freeze for ExecutorError
impl RefUnwindSafe for ExecutorError
impl Send for ExecutorError
impl Sync for ExecutorError
impl Unpin for ExecutorError
impl UnsafeUnpin for ExecutorError
impl UnwindSafe for ExecutorError
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