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