#[non_exhaustive]pub enum ReactiveEngineErrorV0 {
#[non_exhaustive] InvalidNode {
node_index: usize,
},
#[non_exhaustive] ForeignNodeId {
node_index: usize,
expected_graph: u64,
actual_graph: u64,
},
#[non_exhaustive] NodeDoesNotAcceptDeposits {
node_index: usize,
},
ObserverMutationDuringWave,
ZeroStepBudget,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
#[non_exhaustive]InvalidNode
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
#[non_exhaustive]ForeignNodeId
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
#[non_exhaustive]NodeDoesNotAcceptDeposits
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
ObserverMutationDuringWave
ZeroStepBudget
Trait Implementations§
Source§impl Clone for ReactiveEngineErrorV0
impl Clone for ReactiveEngineErrorV0
Source§fn clone(&self) -> ReactiveEngineErrorV0
fn clone(&self) -> ReactiveEngineErrorV0
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 ReactiveEngineErrorV0
impl Debug for ReactiveEngineErrorV0
Source§impl Display for ReactiveEngineErrorV0
impl Display for ReactiveEngineErrorV0
impl Eq for ReactiveEngineErrorV0
Source§impl Error for ReactiveEngineErrorV0
impl Error for ReactiveEngineErrorV0
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 PartialEq for ReactiveEngineErrorV0
impl PartialEq for ReactiveEngineErrorV0
impl StructuralPartialEq for ReactiveEngineErrorV0
Auto Trait Implementations§
impl Freeze for ReactiveEngineErrorV0
impl RefUnwindSafe for ReactiveEngineErrorV0
impl Send for ReactiveEngineErrorV0
impl Sync for ReactiveEngineErrorV0
impl Unpin for ReactiveEngineErrorV0
impl UnsafeUnpin for ReactiveEngineErrorV0
impl UnwindSafe for ReactiveEngineErrorV0
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