pub struct ScannedPeer {
pub peer: Option<Peer>,
pub address: Option<Address>,
/* private fields */
}Expand description
Represents a peer discovered during an LE scan. LE scan responses do not include peer addresses,
so the address is queried in bt-affordances and included here.
Fields§
§peer: Option<Peer>The peer information from the scan result.
address: Option<Address>The address of the peer.
Trait Implementations§
Source§impl Clone for ScannedPeer
impl Clone for ScannedPeer
Source§fn clone(&self) -> ScannedPeer
fn clone(&self) -> ScannedPeer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScannedPeer
impl Debug for ScannedPeer
Source§impl<D> Decode<ScannedPeer, D> for ScannedPeerwhere
D: ResourceDialect,
impl<D> Decode<ScannedPeer, D> for ScannedPeerwhere
D: ResourceDialect,
Source§fn new_empty() -> ScannedPeer
fn new_empty() -> ScannedPeer
Creates a valid instance of
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl Default for ScannedPeer
impl Default for ScannedPeer
Source§fn default() -> ScannedPeer
fn default() -> ScannedPeer
Returns the “default value” for a type. Read more
Source§impl<D> Encode<ScannedPeer, D> for &ScannedPeerwhere
D: ResourceDialect,
impl<D> Encode<ScannedPeer, D> for &ScannedPeerwhere
D: ResourceDialect,
Source§impl PartialEq for ScannedPeer
impl PartialEq for ScannedPeer
Source§fn eq(&self, other: &ScannedPeer) -> bool
fn eq(&self, other: &ScannedPeer) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TypeMarker for ScannedPeer
impl TypeMarker for ScannedPeer
Source§type Owned = ScannedPeer
type Owned = ScannedPeer
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Source§impl ValueTypeMarker for ScannedPeer
impl ValueTypeMarker for ScannedPeer
Source§type Borrowed<'a> = &'a ScannedPeer
type Borrowed<'a> = &'a ScannedPeer
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
value: &<ScannedPeer as TypeMarker>::Owned,
) -> <ScannedPeer as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<ScannedPeer as TypeMarker>::Owned, ) -> <ScannedPeer as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned to Self::Borrowed.impl Persistable for ScannedPeer
impl StructuralPartialEq for ScannedPeer
Auto Trait Implementations§
impl Freeze for ScannedPeer
impl RefUnwindSafe for ScannedPeer
impl Send for ScannedPeer
impl Sync for ScannedPeer
impl Unpin for ScannedPeer
impl UnsafeUnpin for ScannedPeer
impl UnwindSafe for ScannedPeer
Blanket Implementations§
Source§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
Source§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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