pub enum DeviceVerifyAction {
Approve,
Deny,
}Expand description
The action to take on the device authorization request.
JSON schema
{
"title": "DeviceVerifyAction",
"description": "The action to take on the device authorization
request.",
"type": "string",
"enum": [
"approve",
"deny"
],
"x-stainless-model": "client_auth.device_verify_action"
}Variants§
Trait Implementations§
Source§impl Clone for DeviceVerifyAction
impl Clone for DeviceVerifyAction
Source§fn clone(&self) -> DeviceVerifyAction
fn clone(&self) -> DeviceVerifyAction
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 DeviceVerifyAction
Source§impl Debug for DeviceVerifyAction
impl Debug for DeviceVerifyAction
Source§impl<'de> Deserialize<'de> for DeviceVerifyAction
impl<'de> Deserialize<'de> for DeviceVerifyAction
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
Source§impl Display for DeviceVerifyAction
impl Display for DeviceVerifyAction
impl Eq for DeviceVerifyAction
Source§impl From<&DeviceVerifyAction> for DeviceVerifyAction
impl From<&DeviceVerifyAction> for DeviceVerifyAction
Source§fn from(value: &DeviceVerifyAction) -> Self
fn from(value: &DeviceVerifyAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for DeviceVerifyAction
impl FromStr for DeviceVerifyAction
Source§impl Hash for DeviceVerifyAction
impl Hash for DeviceVerifyAction
Source§impl Ord for DeviceVerifyAction
impl Ord for DeviceVerifyAction
Source§fn cmp(&self, other: &DeviceVerifyAction) -> Ordering
fn cmp(&self, other: &DeviceVerifyAction) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeviceVerifyAction
impl PartialEq for DeviceVerifyAction
Source§fn eq(&self, other: &DeviceVerifyAction) -> bool
fn eq(&self, other: &DeviceVerifyAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DeviceVerifyAction
impl PartialOrd for DeviceVerifyAction
Source§impl Serialize for DeviceVerifyAction
impl Serialize for DeviceVerifyAction
impl StructuralPartialEq for DeviceVerifyAction
Source§impl TryFrom<&String> for DeviceVerifyAction
impl TryFrom<&String> for DeviceVerifyAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for DeviceVerifyAction
impl TryFrom<&str> for DeviceVerifyAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for DeviceVerifyAction
impl TryFrom<String> for DeviceVerifyAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for DeviceVerifyAction
impl RefUnwindSafe for DeviceVerifyAction
impl Send for DeviceVerifyAction
impl Sync for DeviceVerifyAction
impl Unpin for DeviceVerifyAction
impl UnsafeUnpin for DeviceVerifyAction
impl UnwindSafe for DeviceVerifyAction
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