pub struct UpdateApiKeyRequest {
pub api_id: String,
pub description: Option<String>,
pub expires: Option<i64>,
pub id: String,
}
Fields§
§api_id: String
The ID for the GraphQL API.
description: Option<String>
A description of the purpose of the API key.
expires: Option<i64>
The time from update time after which the API key expires. The date is represented as seconds since the epoch. For more information, see .
id: String
The API key ID.
Trait Implementations§
Source§impl Clone for UpdateApiKeyRequest
impl Clone for UpdateApiKeyRequest
Source§fn clone(&self) -> UpdateApiKeyRequest
fn clone(&self) -> UpdateApiKeyRequest
Returns a copy 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 UpdateApiKeyRequest
impl Debug for UpdateApiKeyRequest
Source§impl Default for UpdateApiKeyRequest
impl Default for UpdateApiKeyRequest
Source§fn default() -> UpdateApiKeyRequest
fn default() -> UpdateApiKeyRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateApiKeyRequest
impl PartialEq for UpdateApiKeyRequest
Source§impl Serialize for UpdateApiKeyRequest
impl Serialize for UpdateApiKeyRequest
impl StructuralPartialEq for UpdateApiKeyRequest
Auto Trait Implementations§
impl Freeze for UpdateApiKeyRequest
impl RefUnwindSafe for UpdateApiKeyRequest
impl Send for UpdateApiKeyRequest
impl Sync for UpdateApiKeyRequest
impl Unpin for UpdateApiKeyRequest
impl UnwindSafe for UpdateApiKeyRequest
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