Enum ConfirmPolicy
pub enum ConfirmPolicy {
Never,
LowConfidence,
Always,
}Expand description
When a slot’s value should be confirmed back to the user before it is trusted.
Variants§
Never
Never explicitly confirm.
LowConfidence
Confirm only when the slot’s evidence confidence is low.
Always
Always confirm before trusting the value.
Implementations§
§impl ConfirmPolicy
impl ConfirmPolicy
pub fn parse(s: &str) -> Option<ConfirmPolicy>
pub fn parse(s: &str) -> Option<ConfirmPolicy>
Parse from an attribute string (never/low_confidence/always).
Trait Implementations§
§impl Clone for ConfirmPolicy
impl Clone for ConfirmPolicy
§fn clone(&self) -> ConfirmPolicy
fn clone(&self) -> ConfirmPolicy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for ConfirmPolicy
impl Debug for ConfirmPolicy
§impl Default for ConfirmPolicy
impl Default for ConfirmPolicy
§fn default() -> ConfirmPolicy
fn default() -> ConfirmPolicy
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for ConfirmPolicy
impl<'de> Deserialize<'de> for ConfirmPolicy
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConfirmPolicy, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConfirmPolicy, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for ConfirmPolicy
impl PartialEq for ConfirmPolicy
§impl Serialize for ConfirmPolicy
impl Serialize for ConfirmPolicy
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ConfirmPolicy
impl Eq for ConfirmPolicy
impl StructuralPartialEq for ConfirmPolicy
Auto Trait Implementations§
impl Freeze for ConfirmPolicy
impl RefUnwindSafe for ConfirmPolicy
impl Send for ConfirmPolicy
impl Sync for ConfirmPolicy
impl Unpin for ConfirmPolicy
impl UnwindSafe for ConfirmPolicy
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more