pub struct SignalEvdo {
pub rssi: f64,
pub ecio: f64,
pub sinr: f64,
pub io: f64,
}
Available on crate feature
network
only.Fields§
§rssi: f64
The CDMA EV-DO RSSI (Received Signal Strength Indication), in dBm
ecio: f64
The CDMA EV-DO Ec/Io, in dBm
sinr: f64
CDMA EV-DO SINR level, in dB
io: f64
The CDMA EV-DO Io, in dBm
Trait Implementations§
Source§impl Clone for SignalEvdo
impl Clone for SignalEvdo
Source§fn clone(&self) -> SignalEvdo
fn clone(&self) -> SignalEvdo
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 SignalEvdo
impl Debug for SignalEvdo
Source§impl<'de> Deserialize<'de> for SignalEvdo
impl<'de> Deserialize<'de> for SignalEvdo
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 SignalEvdo
impl PartialEq for SignalEvdo
Source§impl Serialize for SignalEvdo
impl Serialize for SignalEvdo
impl Copy for SignalEvdo
impl StructuralPartialEq for SignalEvdo
Auto Trait Implementations§
impl Freeze for SignalEvdo
impl RefUnwindSafe for SignalEvdo
impl Send for SignalEvdo
impl Sync for SignalEvdo
impl Unpin for SignalEvdo
impl UnwindSafe for SignalEvdo
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