pub struct Config {
pub count: usize,
pub fungal: bool,
pub skip_v3: bool,
pub skip_v2: bool,
pub skip_v1: bool,
pub skip_stachelhaus: bool,
pub skip_new_stachelhaus_output: bool,
/* private fields */
}Fields§
§count: usize§fungal: bool§skip_v3: bool§skip_v2: bool§skip_v1: bool§skip_stachelhaus: bool§skip_new_stachelhaus_output: boolImplementations§
Source§impl Config
impl Config
pub fn new() -> Self
pub fn model_dir(&self) -> &PathBuf
pub fn set_model_dir(&mut self, model_dir: PathBuf)
pub fn stachelhaus_signatures(&self) -> &PathBuf
pub fn set_stachelhaus_signatures(&mut self, stachelhaus_signatures: PathBuf)
pub fn categories(&self) -> Vec<PredictionCategory>
Trait Implementations§
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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