Struct grpcio_sys::grpc_metadata
source · #[repr(C)]pub struct grpc_metadata {
pub key: grpc_slice,
pub value: grpc_slice,
pub internal_data: grpc_metadata__bindgen_ty_1,
}
Expand description
A single metadata element
Fields§
§key: grpc_slice
the key, value values are expected to line up with grpc_mdelem: if changing them, update metadata.h at the same time.
value: grpc_slice
§internal_data: grpc_metadata__bindgen_ty_1
Trait Implementations§
source§impl Clone for grpc_metadata
impl Clone for grpc_metadata
source§fn clone(&self) -> grpc_metadata
fn clone(&self) -> grpc_metadata
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 Debug for grpc_metadata
impl Debug for grpc_metadata
impl Copy for grpc_metadata
Auto Trait Implementations§
impl RefUnwindSafe for grpc_metadata
impl !Send for grpc_metadata
impl !Sync for grpc_metadata
impl Unpin for grpc_metadata
impl UnwindSafe for grpc_metadata
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