#[non_exhaustive]pub struct X509DataInfo {
pub certificate_count: usize,
pub subject_name_count: usize,
pub issuer_serial_count: usize,
pub ski_count: usize,
pub crl_count: usize,
pub digest_count: usize,
}Expand description
Parsed <X509Data> children (dispatch-only in P2-001).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.certificate_count: usizeNumber of <X509Certificate> children.
subject_name_count: usizeNumber of <X509SubjectName> children.
issuer_serial_count: usizeNumber of <X509IssuerSerial> children.
ski_count: usizeNumber of <X509SKI> children.
crl_count: usizeNumber of <X509CRL> children.
digest_count: usizeNumber of <X509Digest> children.
Trait Implementations§
Source§impl Clone for X509DataInfo
impl Clone for X509DataInfo
Source§fn clone(&self) -> X509DataInfo
fn clone(&self) -> X509DataInfo
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 X509DataInfo
impl Debug for X509DataInfo
Source§impl Default for X509DataInfo
impl Default for X509DataInfo
Source§fn default() -> X509DataInfo
fn default() -> X509DataInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for X509DataInfo
impl PartialEq for X509DataInfo
impl Eq for X509DataInfo
impl StructuralPartialEq for X509DataInfo
Auto Trait Implementations§
impl Freeze for X509DataInfo
impl RefUnwindSafe for X509DataInfo
impl Send for X509DataInfo
impl Sync for X509DataInfo
impl Unpin for X509DataInfo
impl UnsafeUnpin for X509DataInfo
impl UnwindSafe for X509DataInfo
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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