pub struct AuthenticatedContent {
pub wire_format: WireFormat,
pub content: FramedContent,
pub auth: FramedContentAuthData,
}
Fields§
§wire_format: WireFormat
§content: FramedContent
§auth: FramedContentAuthData
Implementations§
Source§impl AuthenticatedContent
impl AuthenticatedContent
pub fn confirmed_transcript_hash_input( &self, ) -> ConfirmedTranscriptHashInput<'_>
pub fn as_ref(&self) -> AuthenticatedContentRef<'_>
Trait Implementations§
Source§impl Clone for AuthenticatedContent
impl Clone for AuthenticatedContent
Source§fn clone(&self) -> AuthenticatedContent
fn clone(&self) -> AuthenticatedContent
Returns a duplicate 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 Debug for AuthenticatedContent
impl Debug for AuthenticatedContent
Source§impl<'de> Deserialize<'de> for AuthenticatedContent
impl<'de> Deserialize<'de> for AuthenticatedContent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Deserialize for AuthenticatedContent
impl Deserialize for AuthenticatedContent
Source§fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>where
Self: Sized,
fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>where
Self: Sized,
This function deserializes the
bytes
from the provided a std::io::Read
and returns the populated struct. Read moreSource§impl PartialEq for AuthenticatedContent
impl PartialEq for AuthenticatedContent
Source§impl Serialize for &AuthenticatedContent
impl Serialize for &AuthenticatedContent
Source§impl Serialize for AuthenticatedContent
impl Serialize for AuthenticatedContent
Source§impl Serialize for AuthenticatedContent
impl Serialize for AuthenticatedContent
Source§impl Size for &AuthenticatedContent
impl Size for &AuthenticatedContent
fn tls_serialized_len(&self) -> usize
Source§impl Size for AuthenticatedContent
impl Size for AuthenticatedContent
fn tls_serialized_len(&self) -> usize
impl Eq for AuthenticatedContent
impl StructuralPartialEq for AuthenticatedContent
Auto Trait Implementations§
impl Freeze for AuthenticatedContent
impl RefUnwindSafe for AuthenticatedContent
impl Send for AuthenticatedContent
impl Sync for AuthenticatedContent
impl Unpin for AuthenticatedContent
impl UnwindSafe for AuthenticatedContent
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