[][src]Struct rpki::cert::ext::BasicCa

pub struct BasicCa { /* fields omitted */ }

Methods

impl BasicCa[src]

pub fn new(critical: bool, ca: bool) -> Self[src]

pub fn ca(&self) -> bool[src]

pub fn is_critical(&self) -> bool[src]

impl BasicCa[src]

pub fn take<S: Source>(
    cons: &mut Constructed<S>,
    critical: bool,
    basic_ca: &mut Option<Self>
) -> Result<(), S::Err>
[src]

Parses the Basic Constraints Extension.

The extension must be present in CA certificates and must not be present in EE certificates.

  BasicConstraints ::= SEQUENCE {
       cA                      BOOLEAN DEFAULT FALSE,
       pathLenConstraint       INTEGER (0..MAX) OPTIONAL }

The cA field gets chosen by the CA. The pathLenConstraint field must not be present.

pub fn encode<'a>(&'a self) -> impl Values + 'a[src]

Trait Implementations

impl PartialEq<BasicCa> for BasicCa[src]

impl Clone for BasicCa[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for BasicCa[src]

impl Debug for BasicCa[src]

Auto Trait Implementations

impl Send for BasicCa

impl Sync for BasicCa

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.