pub struct OcspFlag { /* private fields */ }
Implementations
sourceimpl OcspFlag
impl OcspFlag
pub const NO_CERTS: OcspFlag = OcspFlag{bits: ffi::OCSP_NOCERTS,}
pub const NO_INTERN: OcspFlag = OcspFlag{bits: ffi::OCSP_NOINTERN,}
pub const NO_CHAIN: OcspFlag = OcspFlag{bits: ffi::OCSP_NOCHAIN,}
pub const NO_VERIFY: OcspFlag = OcspFlag{bits: ffi::OCSP_NOVERIFY,}
pub const NO_EXPLICIT: OcspFlag = OcspFlag{bits: ffi::OCSP_NOEXPLICIT,}
pub const NO_CA_SIGN: OcspFlag = OcspFlag{bits: ffi::OCSP_NOCASIGN,}
pub const NO_DELEGATED: OcspFlag = OcspFlag{bits: ffi::OCSP_NODELEGATED,}
pub const NO_CHECKS: OcspFlag = OcspFlag{bits: ffi::OCSP_NOCHECKS,}
pub const TRUST_OTHER: OcspFlag = OcspFlag{bits: ffi::OCSP_TRUSTOTHER,}
pub const RESPID_KEY: OcspFlag = OcspFlag{bits: ffi::OCSP_RESPID_KEY,}
pub const NO_TIME: OcspFlag = OcspFlag{bits: ffi::OCSP_NOTIME,}
sourcepub fn from_bits(bits: c_ulong) -> Option<OcspFlag>
pub fn from_bits(bits: c_ulong) -> Option<OcspFlag>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: c_ulong) -> OcspFlag
pub const fn from_bits_truncate(bits: c_ulong) -> OcspFlag
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: c_ulong) -> OcspFlag
pub const unsafe fn from_bits_unchecked(bits: c_ulong) -> OcspFlag
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
sourcepub const fn intersects(&self, other: OcspFlag) -> bool
pub const fn intersects(&self, other: OcspFlag) -> bool
Returns true
if there are flags common to both self
and other
.
Trait Implementations
sourceimpl BitAndAssign<OcspFlag> for OcspFlag
impl BitAndAssign<OcspFlag> for OcspFlag
sourcefn bitand_assign(&mut self, other: OcspFlag)
fn bitand_assign(&mut self, other: OcspFlag)
Disables all flags disabled in the set.
sourceimpl BitOrAssign<OcspFlag> for OcspFlag
impl BitOrAssign<OcspFlag> for OcspFlag
sourcefn bitor_assign(&mut self, other: OcspFlag)
fn bitor_assign(&mut self, other: OcspFlag)
Adds the set of flags.
sourceimpl BitXorAssign<OcspFlag> for OcspFlag
impl BitXorAssign<OcspFlag> for OcspFlag
sourcefn bitxor_assign(&mut self, other: OcspFlag)
fn bitxor_assign(&mut self, other: OcspFlag)
Toggles the set of flags.
sourceimpl Extend<OcspFlag> for OcspFlag
impl Extend<OcspFlag> for OcspFlag
sourcefn extend<T: IntoIterator<Item = OcspFlag>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = OcspFlag>>(&mut self, iterator: T)
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl FromIterator<OcspFlag> for OcspFlag
impl FromIterator<OcspFlag> for OcspFlag
sourceimpl Ord for OcspFlag
impl Ord for OcspFlag
sourceimpl PartialOrd<OcspFlag> for OcspFlag
impl PartialOrd<OcspFlag> for OcspFlag
sourcefn partial_cmp(&self, other: &OcspFlag) -> Option<Ordering>
fn partial_cmp(&self, other: &OcspFlag) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl SubAssign<OcspFlag> for OcspFlag
impl SubAssign<OcspFlag> for OcspFlag
sourcefn sub_assign(&mut self, other: OcspFlag)
fn sub_assign(&mut self, other: OcspFlag)
Disables all flags enabled in the set.
impl Copy for OcspFlag
impl Eq for OcspFlag
impl StructuralEq for OcspFlag
impl StructuralPartialEq for OcspFlag
Auto Trait Implementations
impl RefUnwindSafe for OcspFlag
impl Send for OcspFlag
impl Sync for OcspFlag
impl Unpin for OcspFlag
impl UnwindSafe for OcspFlag
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