Home
last modified time | relevance | path

Searched refs:BioMethodInner (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/
H A Dbio.rs81 pub struct BioMethodInner(*mut BIO_METHOD); struct
83 impl BioMethodInner { impl
84 fn new<S: Read + Write>() -> Result<BioMethodInner, ErrorStack> { in new() argument
87 let bio_method = BioMethodInner(ptr); in new()
108 impl Drop for BioMethodInner { implementation
115 pub struct BioMethod(BioMethodInner);
119 let method = BioMethodInner::new::<S>()?; in new()