openssl::x509::store

Struct X509Store

source
pub struct X509Store(/* private fields */);
Expand description

A certificate store to hold trusted X509 certificates.

Methods from Deref<Target = X509StoreRef>ยง

source

pub fn objects(&self) -> &StackRef<X509Object>

๐Ÿ‘ŽDeprecated: This method is unsound, and will be removed in a future version of rust-openssl. X509StoreRef::all_certificates should be used instead.

Get a reference to the cache of certificates in this store.

This method is deprecated. It is unsound and will be removed in a future version of rust-openssl. X509StoreRef::all_certificates should be used instead.

This corresponds to X509_STORE_get0_objects.

Trait Implementationsยง

sourceยง

impl AsRef<X509StoreRef> for X509Store

sourceยง

fn as_ref(&self) -> &X509StoreRef

Converts this type into a shared reference of the (usually inferred) input type.
sourceยง

impl Borrow<X509StoreRef> for X509Store

sourceยง

fn borrow(&self) -> &X509StoreRef

Immutably borrows from an owned value. Read more
sourceยง

impl Deref for X509Store

sourceยง

type Target = X509StoreRef

The resulting type after dereferencing.
sourceยง

fn deref(&self) -> &X509StoreRef

Dereferences the value.
sourceยง

impl DerefMut for X509Store

sourceยง

fn deref_mut(&mut self) -> &mut X509StoreRef

Mutably dereferences the value.
sourceยง

impl Drop for X509Store

sourceยง

fn drop(&mut self)

Executes the destructor for this type. Read more
sourceยง

impl ForeignType for X509Store

sourceยง

type CType = X509_STORE

The raw C type.
sourceยง

type Ref = X509StoreRef

The type representing a reference to this type.
sourceยง

unsafe fn from_ptr(ptr: *mut X509_STORE) -> X509Store

Constructs an instance of this type from its raw type.
sourceยง

fn as_ptr(&self) -> *mut X509_STORE

Returns a raw pointer to the wrapped value.
sourceยง

impl Send for X509Store

sourceยง

impl Sync for X509Store

Auto Trait Implementationsยง

Blanket Implementationsยง

sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.