#[non_exhaustive]pub enum ReactiveGraphBuildErrorV0 {
#[non_exhaustive] EmptyChangePolicyName {
node_index: usize,
},
#[non_exhaustive] DuplicateDeltaKey {
key: String,
},
#[non_exhaustive] ForeignNodeId {
node_index: usize,
expected_graph: u64,
actual_graph: u64,
},
}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]EmptyChangePolicyName
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]DuplicateDeltaKey
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
Trait Implementations§
Source§impl Clone for ReactiveGraphBuildErrorV0
impl Clone for ReactiveGraphBuildErrorV0
Source§fn clone(&self) -> ReactiveGraphBuildErrorV0
fn clone(&self) -> ReactiveGraphBuildErrorV0
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 ReactiveGraphBuildErrorV0
impl Debug for ReactiveGraphBuildErrorV0
Source§impl Display for ReactiveGraphBuildErrorV0
impl Display for ReactiveGraphBuildErrorV0
impl Eq for ReactiveGraphBuildErrorV0
Source§impl Error for ReactiveGraphBuildErrorV0
impl Error for ReactiveGraphBuildErrorV0
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()
impl StructuralPartialEq for ReactiveGraphBuildErrorV0
Auto Trait Implementations§
impl Freeze for ReactiveGraphBuildErrorV0
impl RefUnwindSafe for ReactiveGraphBuildErrorV0
impl Send for ReactiveGraphBuildErrorV0
impl Sync for ReactiveGraphBuildErrorV0
impl Unpin for ReactiveGraphBuildErrorV0
impl UnsafeUnpin for ReactiveGraphBuildErrorV0
impl UnwindSafe for ReactiveGraphBuildErrorV0
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