pub struct CertificateEntry {
pub cert_data: Vec<u8>,
pub extensions: Vec<u8>,
}Fields§
§cert_data: Vec<u8>§extensions: Vec<u8>Trait Implementations§
Source§impl Clone for CertificateEntry
impl Clone for CertificateEntry
Source§fn clone(&self) -> CertificateEntry
fn clone(&self) -> CertificateEntry
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 CertificateEntry
impl Debug for CertificateEntry
Source§impl<'de> Deserialize<'de> for CertificateEntry
impl<'de> Deserialize<'de> for CertificateEntry
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 CertificateEntry
impl RefUnwindSafe for CertificateEntry
impl Send for CertificateEntry
impl Sync for CertificateEntry
impl Unpin for CertificateEntry
impl UnsafeUnpin for CertificateEntry
impl UnwindSafe for CertificateEntry
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