pub struct ManagedCredential {
pub subject_id: u64,
pub key_id: u32,
pub epoch: u64,
pub not_before_ms: u64,
pub not_after_ms: u64,
pub permissions: u32,
}Fields§
§subject_id: u64§key_id: u32§epoch: u64§not_before_ms: u64§not_after_ms: u64§permissions: u32Trait Implementations§
Source§impl Clone for ManagedCredential
impl Clone for ManagedCredential
Source§fn clone(&self) -> ManagedCredential
fn clone(&self) -> ManagedCredential
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 moreimpl Copy for ManagedCredential
Source§impl Debug for ManagedCredential
impl Debug for ManagedCredential
impl Eq for ManagedCredential
Source§impl PartialEq for ManagedCredential
impl PartialEq for ManagedCredential
Source§fn eq(&self, other: &ManagedCredential) -> bool
fn eq(&self, other: &ManagedCredential) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManagedCredential
Auto Trait Implementations§
impl Freeze for ManagedCredential
impl RefUnwindSafe for ManagedCredential
impl Send for ManagedCredential
impl Sync for ManagedCredential
impl Unpin for ManagedCredential
impl UnsafeUnpin for ManagedCredential
impl UnwindSafe for ManagedCredential
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