Struct openssl::ocsp::OcspResponseStatus
source · [−]pub struct OcspResponseStatus(_);
Implementations
sourceimpl OcspResponseStatus
impl OcspResponseStatus
pub const SUCCESSFUL: OcspResponseStatus = OcspResponseStatus(ffi::OCSP_RESPONSE_STATUS_SUCCESSFUL)
pub const MALFORMED_REQUEST: OcspResponseStatus = OcspResponseStatus(ffi::OCSP_RESPONSE_STATUS_MALFORMEDREQUEST)
pub const INTERNAL_ERROR: OcspResponseStatus = OcspResponseStatus(ffi::OCSP_RESPONSE_STATUS_INTERNALERROR)
pub const TRY_LATER: OcspResponseStatus = OcspResponseStatus(ffi::OCSP_RESPONSE_STATUS_TRYLATER)
pub const SIG_REQUIRED: OcspResponseStatus = OcspResponseStatus(ffi::OCSP_RESPONSE_STATUS_SIGREQUIRED)
pub const UNAUTHORIZED: OcspResponseStatus = OcspResponseStatus(ffi::OCSP_RESPONSE_STATUS_UNAUTHORIZED)
pub fn from_raw(raw: c_int) -> OcspResponseStatus
pub fn as_raw(&self) -> c_int
Trait Implementations
sourceimpl Clone for OcspResponseStatus
impl Clone for OcspResponseStatus
sourcefn clone(&self) -> OcspResponseStatus
fn clone(&self) -> OcspResponseStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for OcspResponseStatus
impl Debug for OcspResponseStatus
sourceimpl PartialEq<OcspResponseStatus> for OcspResponseStatus
impl PartialEq<OcspResponseStatus> for OcspResponseStatus
sourcefn eq(&self, other: &OcspResponseStatus) -> bool
fn eq(&self, other: &OcspResponseStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &OcspResponseStatus) -> bool
fn ne(&self, other: &OcspResponseStatus) -> bool
This method tests for !=
.
impl Copy for OcspResponseStatus
impl Eq for OcspResponseStatus
impl StructuralEq for OcspResponseStatus
impl StructuralPartialEq for OcspResponseStatus
Auto Trait Implementations
impl RefUnwindSafe for OcspResponseStatus
impl Send for OcspResponseStatus
impl Sync for OcspResponseStatus
impl Unpin for OcspResponseStatus
impl UnwindSafe for OcspResponseStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more