pub enum KindField {
Kind(i32),
KindStr(String),
}Variants§
Implementations§
Source§impl KindField
impl KindField
Sourcepub fn merge(
field: &mut Option<KindField>,
tag: u32,
wire_type: WireType,
buf: &mut impl Buf,
ctx: DecodeContext,
) -> Result<(), DecodeError>
pub fn merge( field: &mut Option<KindField>, tag: u32, wire_type: WireType, buf: &mut impl Buf, ctx: DecodeContext, ) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into self.
Sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations§
impl Eq for KindField
impl StructuralPartialEq for KindField
Auto Trait Implementations§
impl Freeze for KindField
impl RefUnwindSafe for KindField
impl Send for KindField
impl Sync for KindField
impl Unpin for KindField
impl UnsafeUnpin for KindField
impl UnwindSafe for KindField
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