pub struct Alliance {
pub creator_corporation_id: i32,
pub creator_id: i32,
pub date_founded: DateTime<Utc>,
pub executor_corporation_id: Option<i32>,
pub faction_id: Option<i32>,
pub name: String,
pub ticker: String,
}Fields§
§creator_corporation_id: i32§creator_id: i32§date_founded: DateTime<Utc>§executor_corporation_id: Option<i32>§faction_id: Option<i32>§name: String§ticker: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Alliance
impl<'de> Deserialize<'de> for Alliance
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
Auto Trait Implementations§
impl Freeze for Alliance
impl RefUnwindSafe for Alliance
impl Send for Alliance
impl Sync for Alliance
impl Unpin for Alliance
impl UnwindSafe for Alliance
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