Home
last modified time | relevance | path

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

/third_party/rust/crates/bindgen/bindgen/
Dfeatures.rs21 pub enum RustTarget {
30 impl Default for RustTarget {
32 fn default() -> RustTarget {
37 impl FromStr for RustTarget {
48 stringify!($value) => Ok(RustTarget::$release),
61 impl From<RustTarget> for String {
62 fn from(target: RustTarget) -> Self {
65 RustTarget::$release => stringify!($value),
147 pub const LATEST_STABLE_RUST: RustTarget = RustTarget::Stable_1_64;
179 impl From<RustTarget> for RustFeatures {
[all …]
Dlib.rs89 RustTarget, LATEST_STABLE_RUST, RUST_TARGET_STRINGS,
761 pub fn rust_target(mut self, rust_target: RustTarget) -> Self { in rust_target()
763 if rust_target <= RustTarget::Stable_1_30 { in rust_target()
2096 rust_target: RustTarget,
2222 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target() argument
2274 let rust_target = RustTarget::default(); in default()
/third_party/rust/crates/rust-openssl/openssl-sys/build/
Drun_bindgen.rs4 use bindgen::{MacroTypeVariation, RustTarget};
70 .rust_target(RustTarget::Stable_1_47) in run()
115 .rust_target(RustTarget::Stable_1_47) in run_boringssl()
/third_party/gn/src/gn/
Djson_project_writer.h29 FRIEND_TEST_ALL_PREFIXES(JSONWriter, RustTarget);
/third_party/rust/crates/bindgen/bindgen-cli/
Doptions.rs4 MacroTypeVariation, NonCopyUnionStyle, RegexSet, RustTarget,
16 String::from(RustTarget::default()) in rust_target_help()
235 rust_target: Option<RustTarget>,