Home
last modified time | relevance | path

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

/third_party/rust/crates/rust-openssl/openssl/src/x509/
Dextension.rs431 enum RustGeneralName { enum
444 items: Vec<RustGeneralName>,
470 self.items.push(RustGeneralName::Email(email.to_string())); in email()
476 self.items.push(RustGeneralName::Uri(uri.to_string())); in uri()
482 self.items.push(RustGeneralName::Dns(dns.to_string())); in dns()
488 self.items.push(RustGeneralName::Rid(rid.to_string())); in rid()
494 self.items.push(RustGeneralName::Ip(ip.to_string())); in ip()
523 .push(RustGeneralName::OtherName(oid, content.into())); in other_name2()
532 RustGeneralName::Dns(s) => GeneralName::new_dns(s.as_bytes())?, in build()
533 RustGeneralName::Email(s) => GeneralName::new_email(s.as_bytes())?, in build()
[all …]