pub struct CreateApiKeyResponse {
pub id: Uuid,
pub name: String,
pub key: String,
pub expires_at: Option<DateTime<Utc>>,
}Fields§
§id: Uuid§name: String§key: String§expires_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Debug for CreateApiKeyResponse
impl Debug for CreateApiKeyResponse
Auto Trait Implementations§
impl Freeze for CreateApiKeyResponse
impl RefUnwindSafe for CreateApiKeyResponse
impl Send for CreateApiKeyResponse
impl Sync for CreateApiKeyResponse
impl Unpin for CreateApiKeyResponse
impl UnsafeUnpin for CreateApiKeyResponse
impl UnwindSafe for CreateApiKeyResponse
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