#[non_exhaustive]pub enum CollectionDirectionalSpeedEvaluationControlError {
OverBudgetInput,
InvalidBinding,
ContradictoryEvidence,
}Expand description
Invalid/stale/wrong-kind/contradictory input. Ordinary incomplete and not-evaluable sets are represented by successful typed results instead.
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.
OverBudgetInput
Raw policy or evidence identity exceeds its immutable input cap.
InvalidBinding
Policy did not bind to the evidence manifest/set/kind/member sequence.
ContradictoryEvidence
The strict evidence adapter was contradictory.
Trait Implementations§
Source§impl Clone for CollectionDirectionalSpeedEvaluationControlError
impl Clone for CollectionDirectionalSpeedEvaluationControlError
Source§fn clone(&self) -> CollectionDirectionalSpeedEvaluationControlError
fn clone(&self) -> CollectionDirectionalSpeedEvaluationControlError
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 CollectionDirectionalSpeedEvaluationControlError
impl Eq for CollectionDirectionalSpeedEvaluationControlError
Source§impl Error for CollectionDirectionalSpeedEvaluationControlError
impl Error for CollectionDirectionalSpeedEvaluationControlError
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 CollectionDirectionalSpeedEvaluationControlError
Auto Trait Implementations§
impl Freeze for CollectionDirectionalSpeedEvaluationControlError
impl RefUnwindSafe for CollectionDirectionalSpeedEvaluationControlError
impl Send for CollectionDirectionalSpeedEvaluationControlError
impl Sync for CollectionDirectionalSpeedEvaluationControlError
impl Unpin for CollectionDirectionalSpeedEvaluationControlError
impl UnsafeUnpin for CollectionDirectionalSpeedEvaluationControlError
impl UnwindSafe for CollectionDirectionalSpeedEvaluationControlError
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