pub trait SetSplitStrategie {
// Required methods
fn register(&mut self, path: &Path, metadata: &Metadata);
fn should_split(&self) -> bool;
fn reset(&mut self);
}
Expand description
Defines the split strategie.
Required Methods§
Sourcefn should_split(&self) -> bool
fn should_split(&self) -> bool
Determine, should we split modules now.