pub struct ApiKeyWithToken {
pub id: String,
pub name: String,
pub status: String,
pub created_at: String,
pub last_used_at: Option<String>,
pub token: String,
}Fields§
§id: String§name: String§status: String§created_at: String§last_used_at: Option<String>§token: StringTrait Implementations§
Source§impl Clone for ApiKeyWithToken
impl Clone for ApiKeyWithToken
Source§fn clone(&self) -> ApiKeyWithToken
fn clone(&self) -> ApiKeyWithToken
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 ApiKeyWithToken
impl Debug for ApiKeyWithToken
Source§impl<'de> Deserialize<'de> for ApiKeyWithToken
impl<'de> Deserialize<'de> for ApiKeyWithToken
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 ApiKeyWithToken
impl PartialEq for ApiKeyWithToken
Source§impl Serialize for ApiKeyWithToken
impl Serialize for ApiKeyWithToken
impl Eq for ApiKeyWithToken
impl StructuralPartialEq for ApiKeyWithToken
Auto Trait Implementations§
impl Freeze for ApiKeyWithToken
impl RefUnwindSafe for ApiKeyWithToken
impl Send for ApiKeyWithToken
impl Sync for ApiKeyWithToken
impl Unpin for ApiKeyWithToken
impl UnsafeUnpin for ApiKeyWithToken
impl UnwindSafe for ApiKeyWithToken
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