pub struct ScanRecord {
pub name: Option<String>,
pub uuids: Option<Vec<String>>,
pub appearance: Option<i64>,
pub tx_power: Option<i64>,
pub manufacturer_data: Option<Vec<ManufacturerData>>,
}
Expand description
Stores the byte data of the advertisement packet sent by a Bluetooth device. ScanRecord
Fields§
§name: Option<String>
§uuids: Option<Vec<String>>
§appearance: Option<i64>
Stores the external appearance description of the device.
tx_power: Option<i64>
Stores the transmission power of a broadcasting device.
manufacturer_data: Option<Vec<ManufacturerData>>
Key is the company identifier and the value is an array of bytes of manufacturer specific data.
Implementations§
Source§impl ScanRecord
impl ScanRecord
pub fn builder() -> ScanRecordBuilder
Source§impl ScanRecord
impl ScanRecord
pub const IDENTIFIER: &'static str = "BluetoothEmulation.ScanRecord"
Trait Implementations§
Source§impl Clone for ScanRecord
impl Clone for ScanRecord
Source§fn clone(&self) -> ScanRecord
fn clone(&self) -> ScanRecord
Returns a copy 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 ScanRecord
impl Debug for ScanRecord
Source§impl Default for ScanRecord
impl Default for ScanRecord
Source§fn default() -> ScanRecord
fn default() -> ScanRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScanRecord
impl<'de> Deserialize<'de> for ScanRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ScanRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ScanRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ScanRecord
impl PartialEq for ScanRecord
Source§impl Serialize for ScanRecord
impl Serialize for ScanRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ScanRecord
Auto Trait Implementations§
impl Freeze for ScanRecord
impl RefUnwindSafe for ScanRecord
impl Send for ScanRecord
impl Sync for ScanRecord
impl Unpin for ScanRecord
impl UnwindSafe for ScanRecord
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more