pub struct KeyValueList {
pub values: Vec<KeyValue>,
}
Fields§
§values: Vec<KeyValue>
Trait Implementations§
Source§impl Clone for KeyValueList
impl Clone for KeyValueList
Source§fn clone(&self) -> KeyValueList
fn clone(&self) -> KeyValueList
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 KeyValueList
impl Debug for KeyValueList
Source§impl Default for KeyValueList
impl Default for KeyValueList
Source§impl MessageDecode for KeyValueList
impl MessageDecode for KeyValueList
Source§fn decode<IMPL_MICROPB_READ: PbRead>(
&mut self,
decoder: &mut PbDecoder<IMPL_MICROPB_READ>,
len: usize,
) -> Result<(), DecodeError<IMPL_MICROPB_READ::Error>>
fn decode<IMPL_MICROPB_READ: PbRead>( &mut self, decoder: &mut PbDecoder<IMPL_MICROPB_READ>, len: usize, ) -> Result<(), DecodeError<IMPL_MICROPB_READ::Error>>
Decode an instance of the message from the decoder and merge it into
self
. Read moreSource§fn decode_len_delimited<R>(
&mut self,
decoder: &mut PbDecoder<R>,
) -> Result<(), DecodeError<<R as PbRead>::Error>>where
R: PbRead,
fn decode_len_delimited<R>(
&mut self,
decoder: &mut PbDecoder<R>,
) -> Result<(), DecodeError<<R as PbRead>::Error>>where
R: PbRead,
Decode an instance of the message from the decoder as a length-delimited record, starting with a length
prefix.
Source§impl MessageEncode for KeyValueList
impl MessageEncode for KeyValueList
Source§impl PartialEq for KeyValueList
impl PartialEq for KeyValueList
impl StructuralPartialEq for KeyValueList
Auto Trait Implementations§
impl Freeze for KeyValueList
impl RefUnwindSafe for KeyValueList
impl Send for KeyValueList
impl Sync for KeyValueList
impl Unpin for KeyValueList
impl UnwindSafe for KeyValueList
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