pub struct Int32Value {
pub value: i32,
}Expand description
Wrapper message for int32.
The JSON representation for Int32Value is JSON number.
Fields§
§value: i32The int32 value.
Trait Implementations§
Source§impl Clone for Int32Value
impl Clone for Int32Value
Source§fn clone(&self) -> Int32Value
fn clone(&self) -> Int32Value
Returns a duplicate 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 Int32Value
impl Debug for Int32Value
Source§impl Default for Int32Value
impl Default for Int32Value
Source§impl Message for Int32Value
impl Message for Int32Value
Source§impl PartialEq for Int32Value
impl PartialEq for Int32Value
impl StructuralPartialEq for Int32Value
Auto Trait Implementations§
impl Freeze for Int32Value
impl RefUnwindSafe for Int32Value
impl Send for Int32Value
impl Sync for Int32Value
impl Unpin for Int32Value
impl UnsafeUnpin for Int32Value
impl UnwindSafe for Int32Value
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> NativeType for T
impl<T> NativeType for T
Source§fn encode_value(&self, dst: &mut BytesMut)
fn encode_value(&self, dst: &mut BytesMut)
Encode message to the buffer
const TYPE: WireType = const TYPE: WireType = WireType::LengthDelimited;
Source§fn value_len(&self) -> usize
fn value_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn is_default(&self) -> bool
fn is_default(&self) -> bool
Check if value is default
Source§fn encode_type(&self, tag: u32, dst: &mut BytesMut)
fn encode_type(&self, tag: u32, dst: &mut BytesMut)
Encode field tag and length
Source§fn encoded_len(&self, tag: u32) -> usize
fn encoded_len(&self, tag: u32) -> usize
Protobuf field length
Source§fn serialize(&self, tag: u32, default: DefaultValue<&Self>, dst: &mut BytesMut)
fn serialize(&self, tag: u32, default: DefaultValue<&Self>, dst: &mut BytesMut)
Serialize protobuf field
Source§fn serialized_len(&self, tag: u32, default: DefaultValue<&Self>) -> usize
fn serialized_len(&self, tag: u32, default: DefaultValue<&Self>) -> usize
Protobuf field length
Source§fn deserialize(
&mut self,
_: u32,
wtype: WireType,
src: &mut Bytes,
) -> Result<(), DecodeError>
fn deserialize( &mut self, _: u32, wtype: WireType, src: &mut Bytes, ) -> Result<(), DecodeError>
Deserialize protobuf field
Source§fn deserialize_default(
tag: u32,
wtype: WireType,
src: &mut Bytes,
) -> Result<Self, DecodeError>
fn deserialize_default( tag: u32, wtype: WireType, src: &mut Bytes, ) -> Result<Self, DecodeError>
Deserialize protobuf field to default value