pub struct SignalUmts {
pub rssi: f64,
pub rscp: f64,
pub ecio: f64,
}
Available on crate feature
network
only.Fields§
§rssi: f64
The UMTS RSSI (Received Signal Strength Indication), in dBm
rscp: f64
The UMTS RSCP (Received Signal Code Power), in dBm
If zero, the value is probably missing
ecio: f64
The UMTS Ec/Io, in dB
Trait Implementations§
Source§impl Clone for SignalUmts
impl Clone for SignalUmts
Source§fn clone(&self) -> SignalUmts
fn clone(&self) -> SignalUmts
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 SignalUmts
impl Debug for SignalUmts
Source§impl<'de> Deserialize<'de> for SignalUmts
impl<'de> Deserialize<'de> for SignalUmts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SignalUmts
impl PartialEq for SignalUmts
Source§impl Serialize for SignalUmts
impl Serialize for SignalUmts
impl Copy for SignalUmts
impl StructuralPartialEq for SignalUmts
Auto Trait Implementations§
impl Freeze for SignalUmts
impl RefUnwindSafe for SignalUmts
impl Send for SignalUmts
impl Sync for SignalUmts
impl Unpin for SignalUmts
impl UnwindSafe for SignalUmts
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