pub struct ApiKeyList {
pub object: Option<String>,
pub data: Option<Vec<AdminApiKey>>,
pub has_more: Option<bool>,
pub first_id: Option<String>,
pub last_id: Option<String>,
}
Fields§
§object: Option<String>
§data: Option<Vec<AdminApiKey>>
§has_more: Option<bool>
§first_id: Option<String>
§last_id: Option<String>
Implementations§
Source§impl ApiKeyList
impl ApiKeyList
Sourcepub fn builder() -> ApiKeyListBuilder<((), (), (), (), ())>
pub fn builder() -> ApiKeyListBuilder<((), (), (), (), ())>
Create a builder for building ApiKeyList
.
On the builder, call .object(...)
(optional), .data(...)
(optional), .has_more(...)
(optional), .first_id(...)
(optional), .last_id(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ApiKeyList
.
Trait Implementations§
Source§impl Clone for ApiKeyList
impl Clone for ApiKeyList
Source§fn clone(&self) -> ApiKeyList
fn clone(&self) -> ApiKeyList
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 moreSource§impl Debug for ApiKeyList
impl Debug for ApiKeyList
Source§impl Default for ApiKeyList
impl Default for ApiKeyList
Source§fn default() -> ApiKeyList
fn default() -> ApiKeyList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiKeyList
impl<'de> Deserialize<'de> for ApiKeyList
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 ApiKeyList
impl PartialEq for ApiKeyList
Source§impl Serialize for ApiKeyList
impl Serialize for ApiKeyList
impl StructuralPartialEq for ApiKeyList
Auto Trait Implementations§
impl Freeze for ApiKeyList
impl RefUnwindSafe for ApiKeyList
impl Send for ApiKeyList
impl Sync for ApiKeyList
impl Unpin for ApiKeyList
impl UnwindSafe for ApiKeyList
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