pub struct CredentialSummary {
pub name: String,
pub auth_type: String,
pub created_at: String,
pub tags: Vec<String>,
}Expand description
Summary of a credential (safe to display — no secrets).
Fields§
§name: String§auth_type: String§created_at: StringTrait Implementations§
Source§impl Clone for CredentialSummary
impl Clone for CredentialSummary
Source§fn clone(&self) -> CredentialSummary
fn clone(&self) -> CredentialSummary
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 CredentialSummary
impl Debug for CredentialSummary
Auto Trait Implementations§
impl Freeze for CredentialSummary
impl RefUnwindSafe for CredentialSummary
impl Send for CredentialSummary
impl Sync for CredentialSummary
impl Unpin for CredentialSummary
impl UnsafeUnpin for CredentialSummary
impl UnwindSafe for CredentialSummary
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