Enum askalono::ScanMode[][src]

pub enum ScanMode {
    Elimination,
    TopDown,
}

Available scanning strategy modes.

Variants

Elimination is a general-purpose strategy that iteratively locates the highest license match in a file, then the next, and so on until not finding any more strong matches.

TopDown is a strategy intended for use with attribution documents, or text files containing multiple licenses (and not much else). It's more accurate than Elimination, but significantly slower.

Auto Trait Implementations

impl Send for ScanMode

impl Sync for ScanMode