Home
last modified time | relevance | path

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

/aosp_15_r20/external/bazelbuild-rules_rust/proto/prost/private/
H A Dprotoc_wrapper.rs1087 let rust_module_path = RustModulePath::from(""); in rust_module_path_test() localVariable
1088 assert_eq!(rust_module_path.to_string(), ""); in rust_module_path_test()
1089 assert_eq!(rust_module_path.join("foo"), RustModulePath::from("foo")); in rust_module_path_test()
1092 let rust_module_path = RustModulePath::from("foo"); in rust_module_path_test() localVariable
1093 assert_eq!(rust_module_path.to_string(), "foo"); in rust_module_path_test()
1094 assert_eq!(rust_module_path.join(""), RustModulePath::from("foo")); in rust_module_path_test()
1097 let rust_module_path = RustModulePath::from("foo"); in rust_module_path_test() localVariable
1098 assert_eq!(rust_module_path.to_string(), "foo"); in rust_module_path_test()
1100 rust_module_path.join("bar"), in rust_module_path_test()
1105 let rust_module_path = RustModulePath::from("foo::bar"); in rust_module_path_test() localVariable
[all …]