pub struct AdminApiKeysDeleteResponse {
pub id: Option<String>,
pub object: Option<String>,
pub deleted: Option<bool>,
}
Fields§
§id: Option<String>
§object: Option<String>
§deleted: Option<bool>
Implementations§
Source§impl AdminApiKeysDeleteResponse
impl AdminApiKeysDeleteResponse
Sourcepub fn builder() -> AdminApiKeysDeleteResponseBuilder<((), (), ())>
pub fn builder() -> AdminApiKeysDeleteResponseBuilder<((), (), ())>
Create a builder for building AdminApiKeysDeleteResponse
.
On the builder, call .id(...)
(optional), .object(...)
(optional), .deleted(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AdminApiKeysDeleteResponse
.
Trait Implementations§
Source§impl Clone for AdminApiKeysDeleteResponse
impl Clone for AdminApiKeysDeleteResponse
Source§fn clone(&self) -> AdminApiKeysDeleteResponse
fn clone(&self) -> AdminApiKeysDeleteResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AdminApiKeysDeleteResponse
impl Debug for AdminApiKeysDeleteResponse
Source§impl Default for AdminApiKeysDeleteResponse
impl Default for AdminApiKeysDeleteResponse
Source§fn default() -> AdminApiKeysDeleteResponse
fn default() -> AdminApiKeysDeleteResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminApiKeysDeleteResponse
impl<'de> Deserialize<'de> for AdminApiKeysDeleteResponse
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 PartialEq for AdminApiKeysDeleteResponse
impl PartialEq for AdminApiKeysDeleteResponse
Source§fn eq(&self, other: &AdminApiKeysDeleteResponse) -> bool
fn eq(&self, other: &AdminApiKeysDeleteResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AdminApiKeysDeleteResponse
Auto Trait Implementations§
impl Freeze for AdminApiKeysDeleteResponse
impl RefUnwindSafe for AdminApiKeysDeleteResponse
impl Send for AdminApiKeysDeleteResponse
impl Sync for AdminApiKeysDeleteResponse
impl Unpin for AdminApiKeysDeleteResponse
impl UnwindSafe for AdminApiKeysDeleteResponse
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