/rust/registry/src/github.com-1ecc6299db9ec823/x509-parser-0.6.5/src/x509_extensions.rs
Line | Count | Source (jump to first uncovered line) |
1 | | /// Identifies whether the subject of the certificate is a CA, and the max validation depth. |
2 | 0 | #[derive(Debug, PartialEq)] Unexecuted instantiation: <x509_parser::x509_extensions::BasicConstraints as core::cmp::PartialEq>::eq Unexecuted instantiation: <x509_parser::x509_extensions::BasicConstraints as core::cmp::PartialEq>::ne |
3 | | pub struct BasicConstraints { |
4 | | pub ca : bool, |
5 | | pub path_len_contraint: Option<u32>, |
6 | | } |