pub enum RbeError<K, V, R>{
Show 17 variants
UnexpectedEmpty {
x: K,
open: bool,
},
UnexpectedSymbol {
x: K,
expected: K,
open: bool,
},
MaxCardinalityZeroFoundValue {
x: K,
},
RangeNegativeLowerBound {
min: usize,
},
RangeLowerBoundBiggerMax {
symbol: K,
card: Cardinality,
},
RangeLowerBoundBiggerMaxExpr {
expr: Box<Rbe<K, V, R>>,
card: Cardinality,
},
NonNullableMatch {
non_nullable_rbe: Box<Rbe<K, V, R>>,
expr: Box<Rbe<K, V, R>>,
},
CardinalityFail {
symbol: K,
expected_cardinality: Cardinality,
current_number: usize,
},
CardinalityFailRepeat {
expected_cardinality: Cardinality,
current_number: usize,
},
CardinalityZeroZeroDeriv {
symbol: K,
},
ShouldFailButPassed {
name: String,
},
OrValuesFail {
e: Box<Rbe<K, V, R>>,
failures: Failures<K, V, R>,
},
MkOrValuesFail,
DerivIterError {
error_msg: String,
processed: Vec<(K, V)>,
expr: Box<Rbe<K, V, R>>,
current: Box<Rbe<K, V, R>>,
key: K,
open: bool,
},
MsgError {
msg: String,
},
EmptyCandidates {
rbe: Box<Rbe<K, V, R>>,
values: Values<K, V>,
},
RbeTableKeyWithoutComponent {
key: K,
available_keys: Keys<K>,
},
}
Expand description
Represents a regular bag expression error.
Variants§
UnexpectedEmpty
UnexpectedSymbol
MaxCardinalityZeroFoundValue
Fields
§
x: K
RangeNegativeLowerBound
RangeLowerBoundBiggerMax
RangeLowerBoundBiggerMaxExpr
NonNullableMatch
CardinalityFail
CardinalityFailRepeat
CardinalityZeroZeroDeriv
Fields
§
symbol: K
ShouldFailButPassed
OrValuesFail
MkOrValuesFail
DerivIterError
Fields
§
key: K
MsgError
EmptyCandidates
RbeTableKeyWithoutComponent
Trait Implementations§
Source§impl<'de, K, V, R> Deserialize<'de> for RbeError<K, V, R>
impl<'de, K, V, R> Deserialize<'de> for RbeError<K, V, R>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<K, V, R> Error for RbeError<K, V, R>
impl<K, V, R> Error for RbeError<K, V, R>
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<K, V, R> Eq for RbeError<K, V, R>
impl<K, V, R> StructuralPartialEq for RbeError<K, V, R>
Auto Trait Implementations§
impl<K, V, R> Freeze for RbeError<K, V, R>where
K: Freeze,
impl<K, V, R> !RefUnwindSafe for RbeError<K, V, R>
impl<K, V, R> !Send for RbeError<K, V, R>
impl<K, V, R> !Sync for RbeError<K, V, R>
impl<K, V, R> Unpin for RbeError<K, V, R>
impl<K, V, R> !UnwindSafe for RbeError<K, V, R>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more