[]Struct openssl::ocsp::OcspResponseRef

pub struct OcspResponseRef(_);

Methods

impl OcspResponseRef[src]

pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>[src]

Serializes the response to its standard DER encoding.

This corresponds to i2d_OCSP_RESPONSE.

pub fn status(&self) -> OcspResponseStatus[src]

Returns the status of the response.

pub fn basic(&self) -> Result<OcspBasicResponse, ErrorStack>[src]

Returns the basic response.

This will only succeed if status() returns RESPONSE_STATUS_SUCCESSFUL.

Trait Implementations

impl AsRef<OcspResponseRef> for OcspResponse

impl Borrow<OcspResponseRef> for OcspResponse

impl ForeignTypeRef for OcspResponseRef

type CType = OCSP_RESPONSE

The raw C type.

impl Send for OcspResponseRef[src]

impl Sync for OcspResponseRef[src]

Auto Trait Implementations

impl !RefUnwindSafe for OcspResponseRef

impl Unpin for OcspResponseRef

impl UnwindSafe for OcspResponseRef

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.