pub struct AuthenticatedContentTBM<'a> {
pub content_tbs: FramedContentTBS<'a>,
pub auth: &'a FramedContentAuthData,
}
Expand description
Struct to be HMAC’d to calculate a PublicMessage’s membership_tag
https://www.rfc-editor.org/rfc/rfc9420.html#section-6.2-4
§TLS Presentation Language
struct {
FramedContentTBS content_tbs;
FramedContentAuthData auth;
} AuthenticatedContentTBM;
Fields§
§content_tbs: FramedContentTBS<'a>
§auth: &'a FramedContentAuthData
Trait Implementations§
Source§impl<'a> Clone for AuthenticatedContentTBM<'a>
impl<'a> Clone for AuthenticatedContentTBM<'a>
Source§fn clone(&self) -> AuthenticatedContentTBM<'a>
fn clone(&self) -> AuthenticatedContentTBM<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for AuthenticatedContentTBM<'a>
impl<'a> Debug for AuthenticatedContentTBM<'a>
Source§impl<'a> PartialEq for AuthenticatedContentTBM<'a>
impl<'a> PartialEq for AuthenticatedContentTBM<'a>
Source§impl<'a> Serialize for &AuthenticatedContentTBM<'a>
impl<'a> Serialize for &AuthenticatedContentTBM<'a>
Source§impl<'a> Serialize for AuthenticatedContentTBM<'a>
impl<'a> Serialize for AuthenticatedContentTBM<'a>
Source§impl<'a> Size for &AuthenticatedContentTBM<'a>
impl<'a> Size for &AuthenticatedContentTBM<'a>
fn tls_serialized_len(&self) -> usize
Source§impl<'a> Size for AuthenticatedContentTBM<'a>
impl<'a> Size for AuthenticatedContentTBM<'a>
fn tls_serialized_len(&self) -> usize
impl<'a> Eq for AuthenticatedContentTBM<'a>
impl<'a> StructuralPartialEq for AuthenticatedContentTBM<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuthenticatedContentTBM<'a>
impl<'a> RefUnwindSafe for AuthenticatedContentTBM<'a>
impl<'a> Send for AuthenticatedContentTBM<'a>
impl<'a> Sync for AuthenticatedContentTBM<'a>
impl<'a> Unpin for AuthenticatedContentTBM<'a>
impl<'a> UnwindSafe for AuthenticatedContentTBM<'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