pub struct AuditLogApiKeyCreatedData {
pub scopes: Option<Vec<String>>,
}
Expand description
The payload used to create the API key.
Fields§
§scopes: Option<Vec<String>>
A list of scopes allowed for the API key, e.g. ["api.model.request"]
Implementations§
Trait Implementations§
Source§impl Clone for AuditLogApiKeyCreatedData
impl Clone for AuditLogApiKeyCreatedData
Source§fn clone(&self) -> AuditLogApiKeyCreatedData
fn clone(&self) -> AuditLogApiKeyCreatedData
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 AuditLogApiKeyCreatedData
impl Debug for AuditLogApiKeyCreatedData
Source§impl Default for AuditLogApiKeyCreatedData
impl Default for AuditLogApiKeyCreatedData
Source§fn default() -> AuditLogApiKeyCreatedData
fn default() -> AuditLogApiKeyCreatedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogApiKeyCreatedData
impl<'de> Deserialize<'de> for AuditLogApiKeyCreatedData
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 AuditLogApiKeyCreatedData
impl PartialEq for AuditLogApiKeyCreatedData
Source§fn eq(&self, other: &AuditLogApiKeyCreatedData) -> bool
fn eq(&self, other: &AuditLogApiKeyCreatedData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuditLogApiKeyCreatedData
Auto Trait Implementations§
impl Freeze for AuditLogApiKeyCreatedData
impl RefUnwindSafe for AuditLogApiKeyCreatedData
impl Send for AuditLogApiKeyCreatedData
impl Sync for AuditLogApiKeyCreatedData
impl Unpin for AuditLogApiKeyCreatedData
impl UnwindSafe for AuditLogApiKeyCreatedData
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