pub enum RecommendedStrategy {
BinaryRecursive {
max_depth: u32,
},
Sequential,
CodeOperations,
None,
}Expand description
Recommended decomposition strategy
Variants§
BinaryRecursive
Binary recursive decomposition.
Sequential
Sequential step-by-step
CodeOperations
Domain-specific for code
None
No decomposition needed
Implementations§
Source§impl RecommendedStrategy
impl RecommendedStrategy
Sourcepub fn default_depth() -> u32
pub fn default_depth() -> u32
Get default max_depth for binary recursive
Trait Implementations§
Source§impl Clone for RecommendedStrategy
impl Clone for RecommendedStrategy
Source§fn clone(&self) -> RecommendedStrategy
fn clone(&self) -> RecommendedStrategy
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 moreAuto Trait Implementations§
impl Freeze for RecommendedStrategy
impl RefUnwindSafe for RecommendedStrategy
impl Send for RecommendedStrategy
impl Sync for RecommendedStrategy
impl Unpin for RecommendedStrategy
impl UnsafeUnpin for RecommendedStrategy
impl UnwindSafe for RecommendedStrategy
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