Struct rs_covid19gr::cum::Region[][src]

pub struct Region {
    pub area_gr: String,
    pub area_en: String,
    pub region_gr: String,
    pub region_en: String,
    pub geo_department_gr: String,
    pub geo_department_en: String,
    pub last_updated_at: String,
    pub longtitude: f64,
    pub latitude: f64,
    pub population: u32,
    pub total_cases: u32,
    pub cases_per_100000_people: f32,
}

Fields

area_gr: Stringarea_en: Stringregion_gr: Stringregion_en: Stringgeo_department_gr: Stringgeo_department_en: Stringlast_updated_at: Stringlongtitude: f64latitude: f64population: u32total_cases: u32cases_per_100000_people: f32

Trait Implementations

impl Debug for Region[src]

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

impl Serialize for Region[src]

Auto Trait Implementations

impl RefUnwindSafe for Region

impl Send for Region

impl Sync for Region

impl Unpin for Region

impl UnwindSafe for Region

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.