pub struct ApiKeyGrantResponse {
pub api_key: String,
pub credential_id: String,
pub expires_at: String,
pub header: String,
pub scopes: Vec<String>,
pub additional: AdditionalMembers,
}Fields§
§api_key: String§credential_id: String§expires_at: String§header: String§scopes: Vec<String>§additional: AdditionalMembersTrait Implementations§
Source§impl Clone for ApiKeyGrantResponse
impl Clone for ApiKeyGrantResponse
Source§fn clone(&self) -> ApiKeyGrantResponse
fn clone(&self) -> ApiKeyGrantResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApiKeyGrantResponse
impl Debug for ApiKeyGrantResponse
Source§impl<'de> Deserialize<'de> for ApiKeyGrantResponse
impl<'de> Deserialize<'de> for ApiKeyGrantResponse
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 ApiKeyGrantResponse
impl PartialEq for ApiKeyGrantResponse
Source§impl Serialize for ApiKeyGrantResponse
impl Serialize for ApiKeyGrantResponse
impl StructuralPartialEq for ApiKeyGrantResponse
Auto Trait Implementations§
impl Freeze for ApiKeyGrantResponse
impl RefUnwindSafe for ApiKeyGrantResponse
impl Send for ApiKeyGrantResponse
impl Sync for ApiKeyGrantResponse
impl Unpin for ApiKeyGrantResponse
impl UnsafeUnpin for ApiKeyGrantResponse
impl UnwindSafe for ApiKeyGrantResponse
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