pub struct ConnectedSTAList {
pub mac: Vec<u8, 16>,
pub rssi: i32,
}
Fields§
§mac: Vec<u8, 16>
§rssi: i32
Implementations§
Trait Implementations§
Source§impl Clone for ConnectedSTAList
impl Clone for ConnectedSTAList
Source§fn clone(&self) -> ConnectedSTAList
fn clone(&self) -> ConnectedSTAList
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 ConnectedSTAList
impl Debug for ConnectedSTAList
Source§impl Default for ConnectedSTAList
impl Default for ConnectedSTAList
Source§fn default() -> ConnectedSTAList
fn default() -> ConnectedSTAList
Returns the “default value” for a type. Read more
Source§impl MessageDecode for ConnectedSTAList
impl MessageDecode for ConnectedSTAList
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_from_bytes(
&mut self,
bytes: &[u8],
) -> Result<(), DecodeError<Infallible>>
fn decode_from_bytes( &mut self, bytes: &[u8], ) -> Result<(), DecodeError<Infallible>>
Decode an instance of the message from the provided bytes
Source§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 ConnectedSTAList
impl MessageEncode for ConnectedSTAList
Source§impl PartialEq for ConnectedSTAList
impl PartialEq for ConnectedSTAList
impl StructuralPartialEq for ConnectedSTAList
Auto Trait Implementations§
impl Freeze for ConnectedSTAList
impl RefUnwindSafe for ConnectedSTAList
impl Send for ConnectedSTAList
impl Sync for ConnectedSTAList
impl Unpin for ConnectedSTAList
impl UnwindSafe for ConnectedSTAList
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