pub struct RivenStatistic {
pub item_type: Option<String>,
pub compatability: Option<String>,
pub rerolled: Option<bool>,
pub avg: Option<f32>,
pub stddev: Option<f32>,
pub min: Option<f32>,
pub max: Option<f32>,
pub pop: Option<f32>,
pub median: Option<f32>,
}Expand description
RivenStatistic : A colleciton of rivens about a specific weapon’s riven sales
Fields§
§item_type: Option<String>§compatability: Option<String>§rerolled: Option<bool>§avg: Option<f32>§stddev: Option<f32>§min: Option<f32>§max: Option<f32>§pop: Option<f32>§median: Option<f32>Implementations§
Source§impl RivenStatistic
impl RivenStatistic
Sourcepub fn new() -> RivenStatistic
pub fn new() -> RivenStatistic
A colleciton of rivens about a specific weapon’s riven sales
Trait Implementations§
Source§impl Clone for RivenStatistic
impl Clone for RivenStatistic
Source§fn clone(&self) -> RivenStatistic
fn clone(&self) -> RivenStatistic
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 RivenStatistic
impl Debug for RivenStatistic
Source§impl Default for RivenStatistic
impl Default for RivenStatistic
Source§fn default() -> RivenStatistic
fn default() -> RivenStatistic
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RivenStatistic
impl<'de> Deserialize<'de> for RivenStatistic
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 RivenStatistic
impl PartialEq for RivenStatistic
Source§impl Serialize for RivenStatistic
impl Serialize for RivenStatistic
impl StructuralPartialEq for RivenStatistic
Auto Trait Implementations§
impl Freeze for RivenStatistic
impl RefUnwindSafe for RivenStatistic
impl Send for RivenStatistic
impl Sync for RivenStatistic
impl Unpin for RivenStatistic
impl UnwindSafe for RivenStatistic
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