pub struct X509Lookup<T>(/* private fields */);
Expand description
Information used by an X509Store
to look up certificates and CRLs.
Implementations§
Source§impl 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
.
Source§impl X509Lookup<File>
impl X509Lookup<File>
Sourcepub fn file() -> &'static X509LookupMethodRef<File>
pub fn file() -> &'static X509LookupMethodRef<File>
Lookup method loads all the certificates or CRLs present in a file into memory at the time the file is added as a lookup source.
This corresponds to X509_LOOKUP_file
.
Trait Implementations§
Source§impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>
impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>
Source§fn as_ref(&self) -> &X509LookupRef<T>
fn as_ref(&self) -> &X509LookupRef<T>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl<T> Borrow<X509LookupRef<T>> for X509Lookup<T>
impl<T> Borrow<X509LookupRef<T>> for X509Lookup<T>
Source§fn borrow(&self) -> &X509LookupRef<T>
fn borrow(&self) -> &X509LookupRef<T>
Immutably borrows from an owned value. Read more
Source§impl<T> Deref for X509Lookup<T>
impl<T> Deref for X509Lookup<T>
Source§type Target = X509LookupRef<T>
type Target = X509LookupRef<T>
The resulting type after dereferencing.
Source§fn deref(&self) -> &X509LookupRef<T>
fn deref(&self) -> &X509LookupRef<T>
Dereferences the value.
Source§impl<T> DerefMut for X509Lookup<T>
impl<T> DerefMut for X509Lookup<T>
Source§fn deref_mut(&mut self) -> &mut X509LookupRef<T>
fn deref_mut(&mut self) -> &mut X509LookupRef<T>
Mutably dereferences the value.
Source§impl<T> Drop for X509Lookup<T>
impl<T> Drop for X509Lookup<T>
Source§impl<T> ForeignType for X509Lookup<T>
impl<T> ForeignType for X509Lookup<T>
Source§type CType = X509_LOOKUP
type CType = X509_LOOKUP
The raw C type.
Source§type Ref = X509LookupRef<T>
type Ref = X509LookupRef<T>
The type representing a reference to this type.
Source§unsafe 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.
Source§fn 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> Freeze for X509Lookup<T>
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more