pub struct DeviceVerifyResponse {
pub success: bool,
}Expand description
Response indicating the device authorization action was processed.
JSON schema
{
"title": "DeviceVerifyResponse",
"description": "Response indicating the device authorization action was
processed.",
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"description": "Whether the action was processed successfully.",
"type": "boolean"
}
},
"x-stainless-model": "client_auth.device_verify_response"
}Fields§
§success: boolWhether the action was processed successfully.
Trait Implementations§
Source§impl Clone for DeviceVerifyResponse
impl Clone for DeviceVerifyResponse
Source§fn clone(&self) -> DeviceVerifyResponse
fn clone(&self) -> DeviceVerifyResponse
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 DeviceVerifyResponse
impl Debug for DeviceVerifyResponse
Source§impl<'de> Deserialize<'de> for DeviceVerifyResponse
impl<'de> Deserialize<'de> for DeviceVerifyResponse
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 From<&DeviceVerifyResponse> for DeviceVerifyResponse
impl From<&DeviceVerifyResponse> for DeviceVerifyResponse
Source§fn from(value: &DeviceVerifyResponse) -> Self
fn from(value: &DeviceVerifyResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeviceVerifyResponse
impl RefUnwindSafe for DeviceVerifyResponse
impl Send for DeviceVerifyResponse
impl Sync for DeviceVerifyResponse
impl Unpin for DeviceVerifyResponse
impl UnsafeUnpin for DeviceVerifyResponse
impl UnwindSafe for DeviceVerifyResponse
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