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