pub struct RedTeamConfig {
pub count: usize,
pub seed: u64,
}Expand description
Configuration for red-team scenario generation.
Fields§
§count: usizeNumber of red-team scenarios to generate.
seed: u64Random seed for reproducibility.
Trait Implementations§
Source§impl Clone for RedTeamConfig
impl Clone for RedTeamConfig
Source§fn clone(&self) -> RedTeamConfig
fn clone(&self) -> RedTeamConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RedTeamConfig
impl Debug for RedTeamConfig
Auto Trait Implementations§
impl Freeze for RedTeamConfig
impl RefUnwindSafe for RedTeamConfig
impl Send for RedTeamConfig
impl Sync for RedTeamConfig
impl Unpin for RedTeamConfig
impl UnsafeUnpin for RedTeamConfig
impl UnwindSafe for RedTeamConfig
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