#[non_exhaustive]pub struct ClientIdentity<'a, 'b> {
pub identity: &'b Identity<'a>,
pub now: UnixTime,
}Expand description
Data required to verify a client’s identity.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.identity: &'b Identity<'a>Identity information presented by the client.
now: UnixTimeCurrent time against which time-sensitive inputs should be validated.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for ClientIdentity<'a, 'b>
impl<'a, 'b> RefUnwindSafe for ClientIdentity<'a, 'b>
impl<'a, 'b> Send for ClientIdentity<'a, 'b>
impl<'a, 'b> Sync for ClientIdentity<'a, 'b>
impl<'a, 'b> Unpin for ClientIdentity<'a, 'b>
impl<'a, 'b> UnsafeUnpin for ClientIdentity<'a, 'b>
impl<'a, 'b> UnwindSafe for ClientIdentity<'a, 'b>
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