[][src]Struct edsm_dumps_model::model::powerplay::PowerPlay

pub struct PowerPlay {
    pub id: u64,
    pub allegiance: Option<Allegiance>,
    pub coords: Coords,
    pub government: Option<Government>,
    pub id64: u64,
    pub name: String,
    pub power: Power,
    pub power_state: PowerState,
    pub state: Option<State>,
    pub date: DateTime<Utc>,
}

Fields

id: u64allegiance: Option<Allegiance>coords: Coordsgovernment: Option<Government>id64: u64name: Stringpower: Powerpower_state: PowerStatestate: Option<State>date: DateTime<Utc>

Trait Implementations

impl Clone for PowerPlay[src]

impl Debug for PowerPlay[src]

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

impl PartialEq<PowerPlay> for PowerPlay[src]

impl RootEntry for PowerPlay[src]

impl Serialize for PowerPlay[src]

impl StructuralPartialEq for PowerPlay[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: Deserialize<'de>, 
[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.