pub struct X509Lookup<T>(_, _);
Expand description
Information used by an X509Store
to look up certificates and CRLs.
Implementations
sourceimpl X509Lookup<HashDir>
impl X509Lookup<HashDir>
sourcepub fn hash_dir() -> &'static X509LookupMethodRef<HashDir>
pub fn hash_dir() -> &'static X509LookupMethodRef<HashDir>
Lookup method that loads certificates and CRLs on demand and caches them in memory once they are loaded. It also checks for newer CRLs upon each lookup, so that newer CRLs are used as soon as they appear in the directory.
This corresponds to X509_LOOKUP_hash_dir
.
Methods from Deref<Target = X509LookupRef<T>>
sourcepub fn add_dir(
&mut self,
name: &str,
file_type: SslFiletype
) -> Result<(), ErrorStack>
pub fn add_dir(
&mut self,
name: &str,
file_type: SslFiletype
) -> Result<(), ErrorStack>
Specifies a directory from which certificates and CRLs will be loaded
on-demand. Must be used with X509Lookup::hash_dir
.
This corresponds to X509_LOOKUP_add_dir
.
Trait Implementations
sourceimpl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>
impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>
sourcefn as_ref(&self) -> &X509LookupRef<T>
fn as_ref(&self) -> &X509LookupRef<T>
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl<T> Borrow<X509LookupRef<T>> for X509Lookup<T>
impl<T> Borrow<X509LookupRef<T>> for X509Lookup<T>
sourcefn borrow(&self) -> &X509LookupRef<T>
fn borrow(&self) -> &X509LookupRef<T>
Immutably borrows from an owned value. Read more
sourceimpl<T> Deref for X509Lookup<T>
impl<T> Deref for X509Lookup<T>
type Target = X509LookupRef<T>
type Target = X509LookupRef<T>
The resulting type after dereferencing.
sourcefn deref(&self) -> &X509LookupRef<T>
fn deref(&self) -> &X509LookupRef<T>
Dereferences the value.
sourceimpl<T> DerefMut for X509Lookup<T>
impl<T> DerefMut for X509Lookup<T>
sourcefn deref_mut(&mut self) -> &mut X509LookupRef<T>
fn deref_mut(&mut self) -> &mut X509LookupRef<T>
Mutably dereferences the value.
sourceimpl<T> Drop for X509Lookup<T>
impl<T> Drop for X509Lookup<T>
sourceimpl<T> ForeignType for X509Lookup<T>
impl<T> ForeignType for X509Lookup<T>
type CType = X509_LOOKUP
type CType = X509_LOOKUP
The raw C type.
type Ref = X509LookupRef<T>
type Ref = X509LookupRef<T>
The type representing a reference to this type.
sourceunsafe fn from_ptr(ptr: *mut X509_LOOKUP) -> X509Lookup<T>
unsafe fn from_ptr(ptr: *mut X509_LOOKUP) -> X509Lookup<T>
Constructs an instance of this type from its raw type.
sourcefn as_ptr(&self) -> *mut X509_LOOKUP
fn as_ptr(&self) -> *mut X509_LOOKUP
Returns a raw pointer to the wrapped value.
impl<T> Send for X509Lookup<T>
impl<T> Sync for X509Lookup<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for X509Lookup<T> where
T: RefUnwindSafe,
impl<T> Unpin for X509Lookup<T> where
T: Unpin,
impl<T> UnwindSafe for X509Lookup<T> where
T: UnwindSafe,
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