pub struct FieldPathElement {
pub field_number: Option<i32>,
pub field_name: Option<String>,
pub field_type: Option<i32>,
pub key_type: Option<i32>,
pub value_type: Option<i32>,
pub subscript: Option<Subscript>,
}Fields§
§field_number: Option<i32>§field_name: Option<String>§field_type: Option<i32>§key_type: Option<i32>§value_type: Option<i32>§subscript: Option<Subscript>Implementations§
Source§impl FieldPathElement
impl FieldPathElement
Sourcepub fn field_number(&self) -> i32
pub fn field_number(&self) -> i32
Returns the value of field_number, or the default value if field_number is unset.
Sourcepub fn field_name(&self) -> &str
pub fn field_name(&self) -> &str
Returns the value of field_name, or the default value if field_name is unset.
Sourcepub fn field_type(&self) -> Type
pub fn field_type(&self) -> Type
Returns the enum value of field_type, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_field_type(&mut self, value: Type)
pub fn set_field_type(&mut self, value: Type)
Sets field_type to the provided enum value.
Sourcepub fn key_type(&self) -> Type
pub fn key_type(&self) -> Type
Returns the enum value of key_type, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_key_type(&mut self, value: Type)
pub fn set_key_type(&mut self, value: Type)
Sets key_type to the provided enum value.
Sourcepub fn value_type(&self) -> Type
pub fn value_type(&self) -> Type
Returns the enum value of value_type, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_value_type(&mut self, value: Type)
pub fn set_value_type(&mut self, value: Type)
Sets value_type to the provided enum value.
Trait Implementations§
Source§impl Clone for FieldPathElement
impl Clone for FieldPathElement
Source§fn clone(&self) -> FieldPathElement
fn clone(&self) -> FieldPathElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FieldPathElement
impl Debug for FieldPathElement
Source§impl Default for FieldPathElement
impl Default for FieldPathElement
Source§impl Message for FieldPathElement
impl Message for FieldPathElement
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for FieldPathElement
impl PartialEq for FieldPathElement
Source§fn eq(&self, other: &FieldPathElement) -> bool
fn eq(&self, other: &FieldPathElement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FieldPathElement
Auto Trait Implementations§
impl Freeze for FieldPathElement
impl RefUnwindSafe for FieldPathElement
impl Send for FieldPathElement
impl Sync for FieldPathElement
impl Unpin for FieldPathElement
impl UnsafeUnpin for FieldPathElement
impl UnwindSafe for FieldPathElement
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<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