Type Alias tonic::metadata::AsciiMetadataKey

source ·
pub type AsciiMetadataKey = MetadataKey<Ascii>;
Expand description

An ascii metadata key.

Aliased Type§

struct AsciiMetadataKey { /* private fields */ }

Implementations

source§

impl<VE: ValueEncoding> MetadataKey<VE>

source

pub fn from_bytes(src: &[u8]) -> Result<Self, InvalidMetadataKey>

Converts a slice of bytes to a MetadataKey.

This function normalizes the input.

source

pub fn from_static(src: &'static str) -> Self

Converts a static string to a MetadataKey.

This function panics when the static string is a invalid metadata key.

This function requires the static string to only contain lowercase characters, numerals and symbols, as per the HTTP/2.0 specification and header names internal representation within this library.

§Examples
// Parsing a metadata key
let CUSTOM_KEY: &'static str = "custom-key";

let a = AsciiMetadataKey::from_bytes(b"custom-key").unwrap();
let b = AsciiMetadataKey::from_static(CUSTOM_KEY);
assert_eq!(a, b);
// Parsing a metadata key that contains invalid symbols(s):
AsciiMetadataKey::from_static("content{}{}length"); // This line panics!
// Parsing a metadata key that contains invalid uppercase characters.
let a = AsciiMetadataKey::from_static("foobar");
let b = AsciiMetadataKey::from_static("FOOBAR"); // This line panics!
// Parsing a -bin metadata key as an Ascii key.
let b = AsciiMetadataKey::from_static("hello-bin"); // This line panics!
// Parsing a non-bin metadata key as an Binary key.
let b = BinaryMetadataKey::from_static("hello"); // This line panics!
source

pub fn as_str(&self) -> &str

Returns a str representation of the metadata key.

The returned string will always be lower case.

Trait Implementations

source§

impl<VE: ValueEncoding> AsRef<[u8]> for MetadataKey<VE>

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<VE: ValueEncoding> AsRef<str> for MetadataKey<VE>

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<VE: ValueEncoding> Borrow<str> for MetadataKey<VE>

source§

fn borrow(&self) -> &str

Immutably borrows from an owned value. Read more
source§

impl<VE: Clone + ValueEncoding> Clone for MetadataKey<VE>

source§

fn clone(&self) -> MetadataKey<VE>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<VE: ValueEncoding> Debug for MetadataKey<VE>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<VE: ValueEncoding> Display for MetadataKey<VE>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, VE: ValueEncoding> From<&'a MetadataKey<VE>> for MetadataKey<VE>

source§

fn from(src: &'a MetadataKey<VE>) -> MetadataKey<VE>

Converts to this type from the input type.
source§

impl<VE: ValueEncoding> FromStr for MetadataKey<VE>

§

type Err = InvalidMetadataKey

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, InvalidMetadataKey>

Parses a string s to return a value of this type. Read more
source§

impl<VE: Hash + ValueEncoding> Hash for MetadataKey<VE>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a, VE: ValueEncoding> PartialEq<&'a MetadataKey<VE>> for MetadataKey<VE>

source§

fn eq(&self, other: &&'a MetadataKey<VE>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, VE: ValueEncoding> PartialEq<&'a str> for MetadataKey<VE>

source§

fn eq(&self, other: &&'a str) -> bool

Performs a case-insensitive comparison of the string against the header name

1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<VE: ValueEncoding> PartialEq<str> for MetadataKey<VE>

source§

fn eq(&self, other: &str) -> bool

Performs a case-insensitive comparison of the string against the header name

§Examples
let content_length = AsciiMetadataKey::from_static("content-length");

assert_eq!(content_length, "content-length");
assert_eq!(content_length, "Content-Length");
assert_ne!(content_length, "content length");
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<VE: PartialEq + ValueEncoding> PartialEq for MetadataKey<VE>

source§

fn eq(&self, other: &MetadataKey<VE>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<VE: Eq + ValueEncoding> Eq for MetadataKey<VE>

source§

impl<VE: ValueEncoding> StructuralPartialEq for MetadataKey<VE>