Struct test_cert_gen::Cert [−][src]
DER-encoded X.509 certificate.
Implementations
impl Cert[src]
pub fn from_der(cert_der: impl Into<Vec<u8>>) -> Cert[src]
Construct from DER-encoded.
pub fn from_pem(cert_der_pem: impl AsRef<[u8]>) -> Cert[src]
Construct from PEM-DER-encoded.
pub fn get_der(&self) -> &[u8][src]
Get certificate as DER.
pub fn to_pem(&self) -> String[src]
Convert a certificate to PEM format.
Trait Implementations
impl Clone for Cert[src]
impl Debug for Cert[src]
impl Eq for Cert[src]
impl PartialEq<Cert> for Cert[src]
impl StructuralEq for Cert[src]
impl StructuralPartialEq for Cert[src]
Auto Trait Implementations
impl RefUnwindSafe for Cert[src]
impl Send for Cert[src]
impl Sync for Cert[src]
impl Unpin for Cert[src]
impl UnwindSafe for Cert[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,