pub enum OracleFailureScope {
GlobalToolUnavailable,
RowOrIdentifierFailure,
}Expand description
Why the behaviour axis could not assess something (T17.3 — was conflated into one “flip the whole run unavailable” path). The distinction is load-bearing: a tool that cannot be resolved at all is a global outage (the whole axis is unavailable), but a failure assessing one identifier (a bad path/data for that zone) is row-scoped and must not poison the rest of the run.
Variants§
The zdump tool itself could not be resolved/run — the entire behaviour axis is unavailable.
RowOrIdentifierFailure
The tool resolved, but assessing this one identifier failed; other identifiers stay assessable.
Implementations§
Trait Implementations§
Source§impl Clone for OracleFailureScope
impl Clone for OracleFailureScope
Source§fn clone(&self) -> OracleFailureScope
fn clone(&self) -> OracleFailureScope
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 moreimpl Copy for OracleFailureScope
Source§impl Debug for OracleFailureScope
impl Debug for OracleFailureScope
impl Eq for OracleFailureScope
Source§impl PartialEq for OracleFailureScope
impl PartialEq for OracleFailureScope
Source§fn eq(&self, other: &OracleFailureScope) -> bool
fn eq(&self, other: &OracleFailureScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OracleFailureScope
Auto Trait Implementations§
impl Freeze for OracleFailureScope
impl RefUnwindSafe for OracleFailureScope
impl Send for OracleFailureScope
impl Sync for OracleFailureScope
impl Unpin for OracleFailureScope
impl UnsafeUnpin for OracleFailureScope
impl UnwindSafe for OracleFailureScope
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