Home
last modified time | relevance | path

Searched defs:TxPowerDataElement (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_adv/src/legacy/data_elements/
Dtx_power.rs29 pub struct TxPowerDataElement { struct
34 impl TxPowerDataElement { impl
41 impl From<TxPower> for TxPowerDataElement { implementation
47 impl Sealed for TxPowerDataElement {} implementation
49 impl<F: PacketFlavor> SerializeDataElement<F> for TxPowerDataElement { implementation
67 impl DeserializeDataElement for TxPowerDataElement { implementation
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_adv/src/extended/data_elements/
Dmod.rs81 pub struct TxPowerDataElement { struct
85 impl From<TxPower> for TxPowerDataElement { implementation
91 impl SingleTypeDataElement for TxPowerDataElement { implementation
95 impl WriteDataElement for TxPowerDataElement { implementation
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_adv/src/legacy/
Drandom_data_elements.rs89 fn sample<R: rand::Rng + ?Sized>(&self, rng: &mut R) -> TxPowerDataElement { in sample()