pub struct AuthenticationPayload<'a> {
pub auth_method: AuthenticationMethod,
pub auth_data: &'a [u8],
}
Expand description
Authentication Payload
The Authentication payload, denoted AUTH in this document, contains data used for authentication purposes.
Defined in RFC7296 section 3.8
Fields§
§auth_method: AuthenticationMethod
§auth_data: &'a [u8]
Trait Implementations§
Source§impl<'a> Debug for AuthenticationPayload<'a>
impl<'a> Debug for AuthenticationPayload<'a>
Source§impl<'a> PartialEq for AuthenticationPayload<'a>
impl<'a> PartialEq for AuthenticationPayload<'a>
impl<'a> StructuralPartialEq for AuthenticationPayload<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuthenticationPayload<'a>
impl<'a> RefUnwindSafe for AuthenticationPayload<'a>
impl<'a> Send for AuthenticationPayload<'a>
impl<'a> Sync for AuthenticationPayload<'a>
impl<'a> Unpin for AuthenticationPayload<'a>
impl<'a> UnwindSafe for AuthenticationPayload<'a>
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