pub struct InconclusiveMatchError {
pub message: String,
}Expand description
Error returned when a feature flag cannot be evaluated locally.
This typically occurs when:
- Required person/group properties are missing
- A cohort referenced by the flag is not in the local cache
- A dependent flag is not available locally
- An unknown operator is encountered
Fields§
§message: StringHuman-readable description of why evaluation was inconclusive
Implementations§
Trait Implementations§
Source§impl Debug for InconclusiveMatchError
impl Debug for InconclusiveMatchError
Source§impl Display for InconclusiveMatchError
impl Display for InconclusiveMatchError
Source§impl Error for InconclusiveMatchError
impl Error for InconclusiveMatchError
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 InconclusiveMatchError
impl RefUnwindSafe for InconclusiveMatchError
impl Send for InconclusiveMatchError
impl Sync for InconclusiveMatchError
impl Unpin for InconclusiveMatchError
impl UnwindSafe for InconclusiveMatchError
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