#[non_exhaustive]pub enum ProviderPolicyReason {
SelectedCompiledImplementation,
RejectedOperationMismatch,
RejectedFeatureDisabled,
}Expand description
Fixed provider-policy reason recorded for a decision.
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.
SelectedCompiledImplementation
The requested operation and algorithm are supported in the compiled lane.
RejectedOperationMismatch
The algorithm does not implement the requested operation family.
RejectedFeatureDisabled
The matching implementation was not compiled into this package.
Trait Implementations§
Source§impl Clone for ProviderPolicyReason
impl Clone for ProviderPolicyReason
Source§fn clone(&self) -> ProviderPolicyReason
fn clone(&self) -> ProviderPolicyReason
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 ProviderPolicyReason
Source§impl Debug for ProviderPolicyReason
impl Debug for ProviderPolicyReason
impl Eq for ProviderPolicyReason
Source§impl PartialEq for ProviderPolicyReason
impl PartialEq for ProviderPolicyReason
impl StructuralPartialEq for ProviderPolicyReason
Auto Trait Implementations§
impl Freeze for ProviderPolicyReason
impl RefUnwindSafe for ProviderPolicyReason
impl Send for ProviderPolicyReason
impl Sync for ProviderPolicyReason
impl Unpin for ProviderPolicyReason
impl UnsafeUnpin for ProviderPolicyReason
impl UnwindSafe for ProviderPolicyReason
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