pub struct CompressedCertificate {
pub algorithm: NamedU16,
pub uncompressed_len: usize,
pub compressed_certificate_message: Vec<u8>,
}Fields§
§algorithm: NamedU16§uncompressed_len: usize§compressed_certificate_message: Vec<u8>Trait Implementations§
Source§impl Clone for CompressedCertificate
impl Clone for CompressedCertificate
Source§fn clone(&self) -> CompressedCertificate
fn clone(&self) -> CompressedCertificate
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 moreSource§impl Debug for CompressedCertificate
impl Debug for CompressedCertificate
Source§impl<'de> Deserialize<'de> for CompressedCertificate
impl<'de> Deserialize<'de> for CompressedCertificate
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
Auto Trait Implementations§
impl Freeze for CompressedCertificate
impl RefUnwindSafe for CompressedCertificate
impl Send for CompressedCertificate
impl Sync for CompressedCertificate
impl Unpin for CompressedCertificate
impl UnsafeUnpin for CompressedCertificate
impl UnwindSafe for CompressedCertificate
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