Struct sms77_client::analytics::AnalyticByCountry[][src]

pub struct AnalyticByCountry {
    pub country: String,
    pub direct: Option<u32>,
    pub economy: Option<u32>,
    pub hlr: u32,
    pub inbound: u32,
    pub mnp: u32,
    pub usage_eur: f64,
    pub voice: u32,
}

Fields

country: Stringdirect: Option<u32>economy: Option<u32>hlr: u32inbound: u32mnp: u32usage_eur: f64voice: u32

Trait Implementations

impl Debug for AnalyticByCountry[src]

impl<'de> Deserialize<'de> for AnalyticByCountry[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,