pub struct UInt64Value {
pub value: u64,
}Expand description
Wrapper message for uint64.
The JSON representation for UInt64Value is JSON string.
Fields§
§value: u64The uint64 value.
Trait Implementations§
Source§impl Clone for UInt64Value
impl Clone for UInt64Value
Source§fn clone(&self) -> UInt64Value
fn clone(&self) -> UInt64Value
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 UInt64Value
impl Debug for UInt64Value
Source§impl Default for UInt64Value
impl Default for UInt64Value
Source§impl Message for UInt64Value
impl Message for UInt64Value
Source§impl PartialEq for UInt64Value
impl PartialEq for UInt64Value
impl StructuralPartialEq for UInt64Value
Auto Trait Implementations§
impl Freeze for UInt64Value
impl RefUnwindSafe for UInt64Value
impl Send for UInt64Value
impl Sync for UInt64Value
impl Unpin for UInt64Value
impl UnsafeUnpin for UInt64Value
impl UnwindSafe for UInt64Value
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