pub struct ArchonHunt {
pub id: String,
pub boss: String,
pub reward_pool: String,
pub faction: String,
pub faction_key: Option<Faction>,
pub missions: [ArchonHuntMission; 3],
/* private fields */
}Expand description
An alert in Warframe
Fields§
§id: StringID of this event
boss: StringThe Archon you are up against
reward_pool: StringThe Reward Pool of this event
faction: StringThe i18n of the faction you are up against
faction_key: Option<Faction>The faction you are up against
missions: [ArchonHuntMission; 3]The missions associated with this week’s Archon Hunt
Trait Implementations§
Source§impl Clone for ArchonHunt
impl Clone for ArchonHunt
Source§fn clone(&self) -> ArchonHunt
fn clone(&self) -> ArchonHunt
Returns a duplicate 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 ArchonHunt
impl Debug for ArchonHunt
Source§impl<'de> Deserialize<'de> for ArchonHunt
impl<'de> Deserialize<'de> for ArchonHunt
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 Endpoint for ArchonHunt
impl Endpoint for ArchonHunt
Source§impl PartialEq for ArchonHunt
impl PartialEq for ArchonHunt
Source§impl Queryable for ArchonHunt
impl Queryable for ArchonHunt
Source§impl TimedEvent for ArchonHunt
impl TimedEvent for ArchonHunt
impl StructuralPartialEq for ArchonHunt
Auto Trait Implementations§
impl Freeze for ArchonHunt
impl RefUnwindSafe for ArchonHunt
impl Send for ArchonHunt
impl Sync for ArchonHunt
impl Unpin for ArchonHunt
impl UnwindSafe for ArchonHunt
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