Home
last modified time | relevance | path

Searched defs:BioMethod (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dbio.rs24 pub struct BioMethod(BIO_METHOD); struct
26 impl BioMethod { implementation
27 fn new<S: Read + Write>() -> Result<BioMethod, ErrorStack> { in new()
32 unsafe impl Sync for BioMethod {} implementation
33 unsafe impl Send for BioMethod {} implementation
35 pub fn new<S: Read + Write>(stream: S) -> Result<(*mut BIO, BioMethod), ErrorStack> { in new() argument