pub struct CascadeConfig {
pub max_depth: u32,
pub continuation_probability: f64,
pub allow_branching: bool,
pub max_branches: u32,
}Expand description
Configuration for cascade generation.
Fields§
§max_depth: u32Maximum depth of cascade (how many steps).
continuation_probability: f64Probability of cascade continuing at each step.
allow_branching: boolWhether cascades can branch (multiple consequences from one step).
max_branches: u32Maximum branches per step.
Trait Implementations§
Source§impl Clone for CascadeConfig
impl Clone for CascadeConfig
Source§fn clone(&self) -> CascadeConfig
fn clone(&self) -> CascadeConfig
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 CascadeConfig
impl Debug for CascadeConfig
Source§impl Default for CascadeConfig
impl Default for CascadeConfig
Source§impl<'de> Deserialize<'de> for CascadeConfig
impl<'de> Deserialize<'de> for CascadeConfig
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 CascadeConfig
impl RefUnwindSafe for CascadeConfig
impl Send for CascadeConfig
impl Sync for CascadeConfig
impl Unpin for CascadeConfig
impl UnwindSafe for CascadeConfig
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