Struct grpcio::Metadata [] [src]

#[repr(C)]
pub struct Metadata(_);

A collection of metadata entries that can be exchanged during a call.

gRPC supports these types of metadata:

  • Request headers

    They are sent by the client at the beginning of a remote call before any request messages are sent.

  • Response headers

    They are sent by the server at the beginning of a remote call handler before any response messages are sent.

  • Response trailers

    They are sent by the server at the end of a remote call along with resulting call status.

Metadata value can be ascii string or bytes. They are distinguish by the key suffix, key of bytes value should have suffix '-bin'.

Methods

impl Metadata
[src]

[src]

Returns the count of metadata entries.

[src]

Returns true if there is no metadata entries.

[src]

Returns the metadata entry at the index.

None is returned if out of bound.

Important traits for MetadataIter<'a>
[src]

Returns an iterator over the metadata entries.

Trait Implementations

impl Clone for Metadata
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Drop for Metadata
[src]

[src]

Executes the destructor for this type. Read more

impl<'a> IntoIterator for &'a Metadata
[src]

Which kind of iterator are we turning this into?

The type of the elements being iterated over.

Important traits for MetadataIter<'a>
[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

impl !Send for Metadata

impl !Sync for Metadata