Struct tonic::metadata::MetadataKey
source · [−]#[repr(transparent)]pub struct MetadataKey<VE: ValueEncoding> { /* private fields */ }
Expand description
Represents a custom metadata field name.
MetadataKey
is used as the MetadataMap
key.
Implementations
sourceimpl<VE: ValueEncoding> MetadataKey<VE>
impl<VE: ValueEncoding> MetadataKey<VE>
sourcepub fn from_bytes(src: &[u8]) -> Result<Self, InvalidMetadataKey>
pub fn from_bytes(src: &[u8]) -> Result<Self, InvalidMetadataKey>
Converts a slice of bytes to a MetadataKey
.
This function normalizes the input.
sourcepub fn from_static(src: &'static str) -> Self
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!
Trait Implementations
sourceimpl<VE: ValueEncoding> AsRef<[u8]> for MetadataKey<VE>
impl<VE: ValueEncoding> AsRef<[u8]> for MetadataKey<VE>
sourceimpl<VE: ValueEncoding> AsRef<str> for MetadataKey<VE>
impl<VE: ValueEncoding> AsRef<str> for MetadataKey<VE>
sourceimpl<VE: ValueEncoding> Borrow<str> for MetadataKey<VE>
impl<VE: ValueEncoding> Borrow<str> for MetadataKey<VE>
sourceimpl<VE: Clone + ValueEncoding> Clone for MetadataKey<VE>
impl<VE: Clone + ValueEncoding> Clone for MetadataKey<VE>
sourcefn clone(&self) -> MetadataKey<VE>
fn clone(&self) -> MetadataKey<VE>
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<VE: ValueEncoding> Debug for MetadataKey<VE>
impl<VE: ValueEncoding> Debug for MetadataKey<VE>
sourceimpl<VE: ValueEncoding> Display for MetadataKey<VE>
impl<VE: ValueEncoding> Display for MetadataKey<VE>
sourceimpl<'a, VE: ValueEncoding> From<&'a MetadataKey<VE>> for MetadataKey<VE>
impl<'a, VE: ValueEncoding> From<&'a MetadataKey<VE>> for MetadataKey<VE>
sourcefn from(src: &'a MetadataKey<VE>) -> MetadataKey<VE>
fn from(src: &'a MetadataKey<VE>) -> MetadataKey<VE>
Converts to this type from the input type.
sourceimpl<VE: ValueEncoding> From<MetadataKey<VE>> for Bytes
impl<VE: ValueEncoding> From<MetadataKey<VE>> for Bytes
sourcefn from(name: MetadataKey<VE>) -> Bytes
fn from(name: MetadataKey<VE>) -> Bytes
Converts to this type from the input type.
sourceimpl<VE: ValueEncoding> FromStr for MetadataKey<VE>
impl<VE: ValueEncoding> FromStr for MetadataKey<VE>
type Err = InvalidMetadataKey
type Err = InvalidMetadataKey
The associated error which can be returned from parsing.
sourcefn from_str(s: &str) -> Result<Self, InvalidMetadataKey>
fn from_str(s: &str) -> Result<Self, InvalidMetadataKey>
Parses a string
s
to return a value of this type. Read moresourceimpl<VE: Hash + ValueEncoding> Hash for MetadataKey<VE>
impl<VE: Hash + ValueEncoding> Hash for MetadataKey<VE>
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [
Hasher
]. Read more1.3.0fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Feeds a slice of this type into the given [
Hasher
]. Read moresourceimpl<'a, VE: ValueEncoding> PartialEq<&'a MetadataKey<VE>> for MetadataKey<VE>
impl<'a, VE: ValueEncoding> PartialEq<&'a MetadataKey<VE>> for MetadataKey<VE>
sourcefn eq(&self, other: &&'a MetadataKey<VE>) -> bool
fn eq(&self, other: &&'a MetadataKey<VE>) -> bool
sourceimpl<'a, VE: ValueEncoding> PartialEq<&'a str> for MetadataKey<VE>
impl<'a, VE: ValueEncoding> PartialEq<&'a str> for MetadataKey<VE>
sourceimpl<'a, VE: ValueEncoding> PartialEq<MetadataKey<VE>> for &'a MetadataKey<VE>
impl<'a, VE: ValueEncoding> PartialEq<MetadataKey<VE>> for &'a MetadataKey<VE>
sourcefn eq(&self, other: &MetadataKey<VE>) -> bool
fn eq(&self, other: &MetadataKey<VE>) -> bool
sourceimpl<'a, VE: ValueEncoding> PartialEq<MetadataKey<VE>> for &'a str
impl<'a, VE: ValueEncoding> PartialEq<MetadataKey<VE>> for &'a str
sourcefn 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
sourceimpl<VE: PartialEq + ValueEncoding> PartialEq<MetadataKey<VE>> for MetadataKey<VE>
impl<VE: PartialEq + ValueEncoding> PartialEq<MetadataKey<VE>> for MetadataKey<VE>
sourcefn eq(&self, other: &MetadataKey<VE>) -> bool
fn eq(&self, other: &MetadataKey<VE>) -> bool
sourceimpl<VE: ValueEncoding> PartialEq<MetadataKey<VE>> for str
impl<VE: ValueEncoding> PartialEq<MetadataKey<VE>> for str
sourcefn 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");
sourceimpl<VE: ValueEncoding> PartialEq<str> for MetadataKey<VE>
impl<VE: ValueEncoding> PartialEq<str> for MetadataKey<VE>
sourcefn 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");
impl<VE: Eq + ValueEncoding> Eq for MetadataKey<VE>
impl<VE: ValueEncoding> StructuralEq for MetadataKey<VE>
impl<VE: ValueEncoding> StructuralPartialEq for MetadataKey<VE>
Auto Trait Implementations
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
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;