pub enum ConfirmationResult {
Allow,
Deny,
}Expand description
Result of a tool confirmation request.
Variants§
Trait Implementations§
Source§impl Clone for ConfirmationResult
impl Clone for ConfirmationResult
Source§fn clone(&self) -> ConfirmationResult
fn clone(&self) -> ConfirmationResult
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 moreSource§impl Debug for ConfirmationResult
impl Debug for ConfirmationResult
Source§impl<'de> Deserialize<'de> for ConfirmationResult
impl<'de> Deserialize<'de> for ConfirmationResult
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
impl Eq for ConfirmationResult
Source§impl PartialEq for ConfirmationResult
impl PartialEq for ConfirmationResult
Source§fn eq(&self, other: &ConfirmationResult) -> bool
fn eq(&self, other: &ConfirmationResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConfirmationResult
impl Serialize for ConfirmationResult
impl StructuralPartialEq for ConfirmationResult
Auto Trait Implementations§
impl Freeze for ConfirmationResult
impl RefUnwindSafe for ConfirmationResult
impl Send for ConfirmationResult
impl Sync for ConfirmationResult
impl Unpin for ConfirmationResult
impl UnsafeUnpin for ConfirmationResult
impl UnwindSafe for ConfirmationResult
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