Searched defs:BioMethod (Results 1 – 1 of 1) sorted by relevance
24 pub struct BioMethod(BIO_METHOD); struct26 impl BioMethod { implementation27 fn new<S: Read + Write>() -> Result<BioMethod, ErrorStack> { in new()32 unsafe impl Sync for BioMethod {} implementation33 unsafe impl Send for BioMethod {} implementation35 pub fn new<S: Read + Write>(stream: S) -> Result<(*mut BIO, BioMethod), ErrorStack> { in new() argument