pub struct MulRule<T> {
pub rules: Vec<Box<dyn Rule<T>>>,
}Expand description
Bucket rule that multiply scores of all of its subrules.
Fields§
§rules: Vec<Box<dyn Rule<T>>>List of subrules to score.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for MulRule<T>
impl<T> !RefUnwindSafe for MulRule<T>
impl<T> !Send for MulRule<T>
impl<T> !Sync for MulRule<T>
impl<T> Unpin for MulRule<T>
impl<T> !UnwindSafe for MulRule<T>
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