pub struct KeyLevelRewardEntry {
pub key_level: i32,
pub activity_tier_id: i32,
pub weekly_reward_level: i32,
pub end_of_run_reward_level: i32,
}Fields§
§key_level: i32§activity_tier_id: i32§weekly_reward_level: i32§end_of_run_reward_level: i32Trait Implementations§
Source§impl Clone for KeyLevelRewardEntry
impl Clone for KeyLevelRewardEntry
Source§fn clone(&self) -> KeyLevelRewardEntry
fn clone(&self) -> KeyLevelRewardEntry
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 KeyLevelRewardEntry
impl Debug for KeyLevelRewardEntry
Source§impl Default for KeyLevelRewardEntry
impl Default for KeyLevelRewardEntry
Source§fn default() -> KeyLevelRewardEntry
fn default() -> KeyLevelRewardEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyLevelRewardEntry
impl<'de> Deserialize<'de> for KeyLevelRewardEntry
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 JsonSchema for KeyLevelRewardEntry
impl JsonSchema for KeyLevelRewardEntry
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for KeyLevelRewardEntry
impl RefUnwindSafe for KeyLevelRewardEntry
impl Send for KeyLevelRewardEntry
impl Sync for KeyLevelRewardEntry
impl Unpin for KeyLevelRewardEntry
impl UnsafeUnpin for KeyLevelRewardEntry
impl UnwindSafe for KeyLevelRewardEntry
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