pub struct AuditTeamConfig {
pub min_team_size: usize,
pub max_team_size: usize,
pub specialist_probability: f64,
}Expand description
Audit team configuration.
Fields§
§min_team_size: usizeMinimum team size
max_team_size: usizeMaximum team size
specialist_probability: f64Probability of having a specialist on the team
Trait Implementations§
Source§impl Clone for AuditTeamConfig
impl Clone for AuditTeamConfig
Source§fn clone(&self) -> AuditTeamConfig
fn clone(&self) -> AuditTeamConfig
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 AuditTeamConfig
impl Debug for AuditTeamConfig
Source§impl Default for AuditTeamConfig
impl Default for AuditTeamConfig
Source§impl<'de> Deserialize<'de> for AuditTeamConfig
impl<'de> Deserialize<'de> for AuditTeamConfig
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 AuditTeamConfig
impl RefUnwindSafe for AuditTeamConfig
impl Send for AuditTeamConfig
impl Sync for AuditTeamConfig
impl Unpin for AuditTeamConfig
impl UnwindSafe for AuditTeamConfig
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