[][src]Struct btle::RSSI

pub struct RSSI(pub i32);

Stores Received Signal Strength Indicated as milli-dBm. So -100 dBm is = RSSI(-100_000) 0 dBm = RSSI(0) 10.05 dBm = RSSI(10_050)

Methods

impl RSSI[src]

pub fn new(milli_dbm: i32) -> RSSI[src]

Trait Implementations

impl Clone for RSSI[src]

impl Copy for RSSI[src]

impl Debug for RSSI[src]

impl Eq for RSSI[src]

impl Hash for RSSI[src]

impl Ord for RSSI[src]

impl PartialEq<RSSI> for RSSI[src]

impl PartialOrd<RSSI> for RSSI[src]

impl StructuralEq for RSSI[src]

impl StructuralPartialEq for RSSI[src]

Auto Trait Implementations

impl RefUnwindSafe for RSSI

impl Send for RSSI

impl Sync for RSSI

impl Unpin for RSSI

impl UnwindSafe for RSSI

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.