[]Struct openssl::conf::Conf

pub struct Conf(_);

Methods

impl Conf[src]

pub fn new(method: ConfMethod) -> Result<Conf, ErrorStack>[src]

Create a configuration parser.

Examples

use openssl::conf::{Conf, ConfMethod};

let conf = Conf::new(ConfMethod::default());

Trait Implementations

impl Send for Conf[src]

impl Drop for Conf

impl Sync for Conf[src]

impl AsRef<ConfRef> for Conf

impl DerefMut for Conf

impl Deref for Conf

type Target = ConfRef

The resulting type after dereferencing.

impl Borrow<ConfRef> for Conf

impl ForeignType for Conf

type CType = CONF

The raw C type.

type Ref = ConfRef

The type representing a reference to this type.

Auto Trait Implementations

impl Unpin for Conf

impl UnwindSafe for Conf

impl RefUnwindSafe for Conf

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]