pub struct SophisticationDistribution {
pub basic: f64,
pub standard: f64,
pub professional: f64,
pub advanced: f64,
}Expand description
Sophistication level distribution.
Fields§
§basic: f64Basic sophistication weight
standard: f64Standard sophistication weight
professional: f64Professional sophistication weight
advanced: f64Advanced sophistication weight
Trait Implementations§
Source§impl Clone for SophisticationDistribution
impl Clone for SophisticationDistribution
Source§fn clone(&self) -> SophisticationDistribution
fn clone(&self) -> SophisticationDistribution
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 SophisticationDistribution
impl Debug for SophisticationDistribution
Source§impl Default for SophisticationDistribution
impl Default for SophisticationDistribution
Source§impl<'de> Deserialize<'de> for SophisticationDistribution
impl<'de> Deserialize<'de> for SophisticationDistribution
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
Auto Trait Implementations§
impl Freeze for SophisticationDistribution
impl RefUnwindSafe for SophisticationDistribution
impl Send for SophisticationDistribution
impl Sync for SophisticationDistribution
impl Unpin for SophisticationDistribution
impl UnwindSafe for SophisticationDistribution
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