Struct openssl::conf::Conf [−]
pub struct Conf(_);
Methods
impl Conf
[src]
impl Conf
pub fn new(method: ConfMethod) -> Result<Conf, ErrorStack>
[src]
pub fn new(method: ConfMethod) -> Result<Conf, ErrorStack>
Create a configuration parser.
Examples
use openssl::conf::{Conf, ConfMethod}; let conf = Conf::new(ConfMethod::default());
Trait Implementations
impl ForeignType for Conf
impl ForeignType for Conf
type CType = CONF
The raw C type.
type Ref = ConfRef
The type representing a reference to this type.
unsafe fn from_ptr(ptr: *mut CONF) -> Conf
unsafe fn from_ptr(ptr: *mut CONF) -> Conf
Constructs an instance of this type from its raw type.
fn as_ptr(&self) -> *mut CONF
fn as_ptr(&self) -> *mut CONF
Returns a raw pointer to the wrapped value.
impl Drop for Conf
impl Drop for Conf
impl Deref for Conf
impl Deref for Conf
type Target = ConfRef
The resulting type after dereferencing.
fn deref(&self) -> &ConfRef
fn deref(&self) -> &ConfRef
Dereferences the value.
impl DerefMut for Conf
impl DerefMut for Conf
impl Borrow<ConfRef> for Conf
impl Borrow<ConfRef> for Conf
impl AsRef<ConfRef> for Conf
impl AsRef<ConfRef> for Conf
impl Send for Conf
[src]
impl Send for Conf
impl Sync for Conf
[src]
impl Sync for Conf