Struct openssl::pkcs7::Pkcs7Signed

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

A PKCS#7 signed data structure.

Contains signed data.

Methods from Deref<Target = Pkcs7SignedRef>§

source

pub fn certificates(&self) -> Option<&StackRef<X509>>

Get the stack of certificates from the PKCS7_SIGNED object

Trait Implementations§

source§

impl AsRef<Pkcs7SignedRef> for Pkcs7Signed

source§

fn as_ref(&self) -> &Pkcs7SignedRef

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

impl Borrow<Pkcs7SignedRef> for Pkcs7Signed

source§

fn borrow(&self) -> &Pkcs7SignedRef

Immutably borrows from an owned value. Read more
source§

impl Deref for Pkcs7Signed

§

type Target = Pkcs7SignedRef

The resulting type after dereferencing.
source§

fn deref(&self) -> &Pkcs7SignedRef

Dereferences the value.
source§

impl DerefMut for Pkcs7Signed

source§

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

Mutably dereferences the value.
source§

impl Drop for Pkcs7Signed

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl ForeignType for Pkcs7Signed

§

type CType = PKCS7_SIGNED

The raw C type.
§

type Ref = Pkcs7SignedRef

The type representing a reference to this type.
source§

unsafe fn from_ptr(ptr: *mut PKCS7_SIGNED) -> Pkcs7Signed

Constructs an instance of this type from its raw type.
source§

fn as_ptr(&self) -> *mut PKCS7_SIGNED

Returns a raw pointer to the wrapped value.
source§

impl Send for Pkcs7Signed

source§

impl Sync for Pkcs7Signed

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>,

§

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>,

§

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.