Struct tonic::metadata::VacantEntry

source ·
pub struct VacantEntry<'a, VE: ValueEncoding> { /* private fields */ }
Expand description

A view into a single empty location in a MetadataMap.

This struct is returned as part of the Entry enum.

Implementations§

source§

impl<'a, VE: ValueEncoding> VacantEntry<'a, VE>

source

pub fn key(&self) -> &MetadataKey<VE>

Returns a reference to the entry’s key

§Examples
let mut map = MetadataMap::new();

assert_eq!(map.entry("x-hello").unwrap().key(), "x-hello");
source

pub fn into_key(self) -> MetadataKey<VE>

Take ownership of the key

§Examples
let mut map = MetadataMap::new();

if let Entry::Vacant(v) = map.entry("x-hello").unwrap() {
    assert_eq!(v.into_key().as_str(), "x-hello");
}
source

pub fn insert(self, value: MetadataValue<VE>) -> &'a mut MetadataValue<VE>

Insert the value into the entry.

The value will be associated with this entry’s key. A mutable reference to the inserted value will be returned.

§Examples
let mut map = MetadataMap::new();

if let Entry::Vacant(v) = map.entry("x-hello").unwrap() {
    v.insert("world".parse().unwrap());
}

assert_eq!(map.get("x-hello").unwrap(), "world");
source

pub fn insert_entry(self, value: MetadataValue<VE>) -> OccupiedEntry<'a, Ascii>

Insert the value into the entry.

The value will be associated with this entry’s key. The new OccupiedEntry is returned, allowing for further manipulation.

§Examples
let mut map = MetadataMap::new();

if let Entry::Vacant(v) = map.entry("x-hello").unwrap() {
    let mut e = v.insert_entry("world".parse().unwrap());
    e.insert("world2".parse().unwrap());
}

assert_eq!(map.get("x-hello").unwrap(), "world2");

Trait Implementations§

source§

impl<'a, VE: Debug + ValueEncoding> Debug for VacantEntry<'a, VE>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, VE> RefUnwindSafe for VacantEntry<'a, VE>
where VE: RefUnwindSafe,

§

impl<'a, VE> Send for VacantEntry<'a, VE>
where VE: Send,

§

impl<'a, VE> Sync for VacantEntry<'a, VE>
where VE: Sync,

§

impl<'a, VE> Unpin for VacantEntry<'a, VE>
where VE: Unpin,

§

impl<'a, VE> !UnwindSafe for VacantEntry<'a, VE>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more