Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/metadata/
Dkey.rs33 pub type AsciiMetadataKey = MetadataKey<Ascii>; typedef
288 use super::{AsciiMetadataKey, BinaryMetadataKey};
303 assert!(AsciiMetadataKey::from_bytes(b"").is_err()); in test_from_bytes_ascii()
304 assert!(AsciiMetadataKey::from_bytes(b"\xFF").is_err()); in test_from_bytes_ascii()
306 AsciiMetadataKey::from_bytes(b"abc").unwrap().as_str(), in test_from_bytes_ascii()
309 assert!(AsciiMetadataKey::from_bytes(b"abc-bin").is_err()); in test_from_bytes_ascii()
Dmod.rs10 pub use self::key::AsciiMetadataKey;