pub struct MetadataKey<VE>where
VE: ValueEncoding,{ /* private fields */ }Expand description
Represents a custom metadata field name.
MetadataKey is used as the MetadataMap key.
Implementations§
Source§impl<VE> MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> MetadataKey<VE>where
VE: ValueEncoding,
Sourcepub fn from_bytes(src: &[u8]) -> Result<MetadataKey<VE>, InvalidMetadataKey>
pub fn from_bytes(src: &[u8]) -> Result<MetadataKey<VE>, InvalidMetadataKey>
Converts a slice of bytes to a MetadataKey.
This function normalizes the input.
Sourcepub fn from_static(src: &'static str) -> MetadataKey<VE>
pub fn from_static(src: &'static str) -> MetadataKey<VE>
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!Trait Implementations§
Source§impl<VE> AsRef<[u8]> for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> AsRef<[u8]> for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<VE> AsRef<str> for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> AsRef<str> for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<VE> Borrow<str> for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> Borrow<str> for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<VE> Clone for MetadataKey<VE>where
VE: Clone + ValueEncoding,
impl<VE> Clone for MetadataKey<VE>where
VE: Clone + ValueEncoding,
Source§fn clone(&self) -> MetadataKey<VE>
fn clone(&self) -> MetadataKey<VE>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<VE> Debug for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> Debug for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<VE> Display for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> Display for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<'a, VE> From<&'a MetadataKey<VE>> for MetadataKey<VE>where
VE: ValueEncoding,
impl<'a, VE> From<&'a MetadataKey<VE>> for MetadataKey<VE>where
VE: ValueEncoding,
Source§fn from(src: &'a MetadataKey<VE>) -> MetadataKey<VE>
fn from(src: &'a MetadataKey<VE>) -> MetadataKey<VE>
Converts to this type from the input type.
Source§impl<KeyVE> From<MetadataKey<KeyVE>> for MetadataValue<Ascii>where
KeyVE: ValueEncoding,
impl<KeyVE> From<MetadataKey<KeyVE>> for MetadataValue<Ascii>where
KeyVE: ValueEncoding,
Source§fn from(h: MetadataKey<KeyVE>) -> MetadataValue<Ascii>
fn from(h: MetadataKey<KeyVE>) -> MetadataValue<Ascii>
Converts to this type from the input type.
Source§impl<VE> FromStr for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> FromStr for MetadataKey<VE>where
VE: ValueEncoding,
Source§type Err = InvalidMetadataKey
type Err = InvalidMetadataKey
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<MetadataKey<VE>, InvalidMetadataKey>
fn from_str(s: &str) -> Result<MetadataKey<VE>, InvalidMetadataKey>
Parses a string
s to return a value of this type. Read moreSource§impl<VE> Hash for MetadataKey<VE>where
VE: Hash + ValueEncoding,
impl<VE> Hash for MetadataKey<VE>where
VE: Hash + ValueEncoding,
Source§impl<'a, VE> PartialEq<&'a MetadataKey<VE>> for MetadataKey<VE>where
VE: ValueEncoding,
impl<'a, VE> PartialEq<&'a MetadataKey<VE>> for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<'a, VE> PartialEq<&'a str> for MetadataKey<VE>where
VE: ValueEncoding,
impl<'a, VE> PartialEq<&'a str> for MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<'a, VE> PartialEq<MetadataKey<VE>> for &'a MetadataKey<VE>where
VE: ValueEncoding,
impl<'a, VE> PartialEq<MetadataKey<VE>> for &'a MetadataKey<VE>where
VE: ValueEncoding,
Source§impl<'a, VE> PartialEq<MetadataKey<VE>> for &'a strwhere
VE: ValueEncoding,
impl<'a, VE> PartialEq<MetadataKey<VE>> for &'a strwhere
VE: ValueEncoding,
Source§fn eq(&self, other: &MetadataKey<VE>) -> bool
fn eq(&self, other: &MetadataKey<VE>) -> bool
Performs a case-insensitive comparison of the string against the header name
Source§impl<VE> PartialEq<MetadataKey<VE>> for strwhere
VE: ValueEncoding,
impl<VE> PartialEq<MetadataKey<VE>> for strwhere
VE: ValueEncoding,
Source§fn eq(&self, other: &MetadataKey<VE>) -> bool
fn eq(&self, other: &MetadataKey<VE>) -> 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");Source§impl<VE> PartialEq<str> for MetadataKey<VE>where
VE: ValueEncoding,
impl<VE> PartialEq<str> for MetadataKey<VE>where
VE: ValueEncoding,
Source§fn eq(&self, other: &str) -> bool
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");Source§impl<VE> PartialEq for MetadataKey<VE>where
VE: PartialEq + ValueEncoding,
impl<VE> PartialEq for MetadataKey<VE>where
VE: PartialEq + ValueEncoding,
impl<VE> Eq for MetadataKey<VE>where
VE: Eq + ValueEncoding,
impl<VE> StructuralPartialEq for MetadataKey<VE>where
VE: ValueEncoding,
Auto Trait Implementations§
impl<VE> !Freeze for MetadataKey<VE>
impl<VE> RefUnwindSafe for MetadataKey<VE>where
VE: RefUnwindSafe,
impl<VE> Send for MetadataKey<VE>where
VE: Send,
impl<VE> Sync for MetadataKey<VE>where
VE: Sync,
impl<VE> Unpin for MetadataKey<VE>where
VE: Unpin,
impl<VE> UnwindSafe for MetadataKey<VE>where
VE: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request