pub struct ApiKeyList {
pub data: Option<Vec<AdminApiKey>>,
pub first_id: Option<String>,
pub has_more: Option<bool>,
pub last_id: Option<String>,
pub object: Option<String>,
}
Fields§
§data: Option<Vec<AdminApiKey>>
§first_id: Option<String>
§has_more: Option<bool>
§last_id: Option<String>
§object: Option<String>
Trait Implementations§
Source§impl Debug for ApiKeyList
impl Debug for ApiKeyList
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
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