pub struct StationInfoFaction {
pub name: String,
pub faction_state: Option<FactionState>,
}
Expand description
Information about a faction for the market.
Fields§
§name: String
The name of the faction.
faction_state: Option<FactionState>
The current state the faction is in, if any.
Trait Implementations§
Source§impl Clone for StationInfoFaction
impl Clone for StationInfoFaction
Source§fn clone(&self) -> StationInfoFaction
fn clone(&self) -> StationInfoFaction
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StationInfoFaction
impl Debug for StationInfoFaction
Source§impl<'de> Deserialize<'de> for StationInfoFaction
impl<'de> Deserialize<'de> for StationInfoFaction
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
Source§impl PartialEq for StationInfoFaction
impl PartialEq for StationInfoFaction
Source§impl Serialize for StationInfoFaction
impl Serialize for StationInfoFaction
impl StructuralPartialEq for StationInfoFaction
Auto Trait Implementations§
impl Freeze for StationInfoFaction
impl RefUnwindSafe for StationInfoFaction
impl Send for StationInfoFaction
impl Sync for StationInfoFaction
impl Unpin for StationInfoFaction
impl UnwindSafe for StationInfoFaction
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