Lines Matching defs:status
111 /// The overall status of the response.
112 pub status: OcspCertStatus,
113 /// If `status` is `CERT_STATUS_REVOKED`, the reason for the revocation.
115 /// If `status` is `CERT_STATUS_REVOKED`, the time at which the certificate was revoked.
176 /// Looks up the status for the specified certificate ID.
180 let mut status = ffi::V_OCSP_CERTSTATUS_UNKNOWN;
189 &mut status,
199 status: OcspCertStatus(status),
200 reason: OcspRevokedStatus(status),
248 /// Creates an OCSP response from the status and optional body.
250 /// A body should only be provided if `status` is `RESPONSE_STATUS_SUCCESSFUL`.
253 status: OcspResponseStatus,
260 status.as_raw(),
284 /// Returns the status of the response.
286 pub fn status(&self) -> OcspResponseStatus {
292 /// This will only succeed if `status()` returns `RESPONSE_STATUS_SUCCESSFUL`.