[][src]Struct rfesi::groups::CorporationPublicInfo

pub struct CorporationPublicInfo {
    pub alliance_id: Option<u64>,
    pub ceo_id: u64,
    pub creator_id: u64,
    pub date_founded: String,
    pub description: String,
    pub home_station_id: u64,
    pub member_count: u64,
    pub name: String,
    pub shares: u64,
    pub tax_rate: f32,
    pub ticket: String,
    pub url: String,
    pub war_eligible: bool,
}

Fields

alliance_id: Option<u64>ceo_id: u64creator_id: u64date_founded: Stringdescription: Stringhome_station_id: u64member_count: u64name: Stringshares: u64tax_rate: f32ticket: Stringurl: Stringwar_eligible: bool

Trait Implementations

impl Debug for CorporationPublicInfo[src]

impl<'de> Deserialize<'de> for CorporationPublicInfo[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.