pub struct SyndicateJob {
pub activation: Option<String>,
pub expiry: Option<String>,
pub reward_pool: Option<Vec<String>>,
pub reward_pool_drops: Option<Vec<Vec<DropsInner>>>,
pub type: Option<String>,
pub enemy_levels: Option<Vec<f64>>,
pub standing_stages: Option<Vec<f64>>,
pub min_mr: Option<f64>,
}Expand description
SyndicateJob : A Job for a syndicate. Often called a bounty.
Fields§
§activation: Option<String>Timestamp for when the job becomes active
expiry: Option<String>Timestamp for when the job becomes inactive
reward_pool: Option<Vec<String>>Reward Pool for the job
reward_pool_drops: Option<Vec<Vec<DropsInner>>>Reward Pool items as drops for jobs
type: Option<String>What type of Job (Bounty) it is
enemy_levels: Option<Vec<f64>>Array of enemy levels
standing_stages: Option<Vec<f64>>Stages of standing rewards.
min_mr: Option<f64>Minimum Mastery Rank required to perform a job.
Implementations§
Source§impl SyndicateJob
impl SyndicateJob
Sourcepub fn new() -> SyndicateJob
pub fn new() -> SyndicateJob
A Job for a syndicate. Often called a bounty.
Trait Implementations§
Source§impl Clone for SyndicateJob
impl Clone for SyndicateJob
Source§fn clone(&self) -> SyndicateJob
fn clone(&self) -> SyndicateJob
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 SyndicateJob
impl Debug for SyndicateJob
Source§impl Default for SyndicateJob
impl Default for SyndicateJob
Source§fn default() -> SyndicateJob
fn default() -> SyndicateJob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyndicateJob
impl<'de> Deserialize<'de> for SyndicateJob
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 SyndicateJob
impl PartialEq for SyndicateJob
Source§impl Serialize for SyndicateJob
impl Serialize for SyndicateJob
impl StructuralPartialEq for SyndicateJob
Auto Trait Implementations§
impl Freeze for SyndicateJob
impl RefUnwindSafe for SyndicateJob
impl Send for SyndicateJob
impl Sync for SyndicateJob
impl Unpin for SyndicateJob
impl UnwindSafe for SyndicateJob
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