pub trait LogGenerator {
    fn log(&self) -> String;
    fn weight(&self) -> u8;
}

Required Methods

Generate a random log

Of the total overall logs that are generated in an organization, whats the procentage of logs generated by this source? The bigger, the most probability of being generated

Implementors