--- source: tests/output.rs expression: "get_stdout(&[item])" --- log Enum log::Level rusty-man SYNOPSIS #[repr(usize)] pub enum Level { Error, Warn, Info, Debug, Trace, } DESCRIPTION An enum representing the available verbosity levels of the logger. Typical usage includes: checking if a certain `Level` is enabled with `log_enabled!`, specifying the `Level` of `log!`, and comparing a `Level` directly to a `LevelFilter`. VARIANTS Error Error The "error" level. Designates very serious errors. Warn Warn The "warn" level. Designates hazardous situations. Info Info The "info" level. Designates useful information. Debug Debug The "debug" level. Designates lower priority information. Trace Trace The "trace" level. Designates very low priority, often extremely verbose, information. METHODS impl Level max pub fn max() -> Level Returns the most verbose logging level. to_level_filter pub fn to_level_filter(&self) -> LevelFilter Converts the `Level` to the equivalent `LevelFilter`. IMPLEMENTATIONS Trait Implementations Clone impl Clone for Level Copy impl Copy for Level Debug impl Debug for Level Display impl Display for Level Eq impl Eq for Level FromStr impl FromStr for Level Hash impl Hash for Level Ord impl Ord for Level PartialEq impl PartialEq for Level PartialEq impl PartialEq for LevelFilter PartialEq impl PartialEq for Level PartialOrd impl PartialOrd for Level PartialOrd impl PartialOrd for LevelFilter PartialOrd impl PartialOrd for Level StructuralEq impl StructuralEq for Level Auto Trait Implementations RefUnwindSafe impl RefUnwindSafe for Level Send impl Send for Level Sync impl Sync for Level Unpin impl Unpin for Level UnwindSafe impl UnwindSafe for Level Blanket Implementations Any impl Any for T where     T: 'static + ?Sized, Borrow impl Borrow for T where     T: ?Sized, BorrowMut impl BorrowMut for T where     T: ?Sized, From impl From for T Into impl Into for T where     U: From, ToOwned impl ToOwned for T where     T: Clone, ToString impl ToString for T where     T: Display + ?Sized, TryFrom impl TryFrom for T where     U: Into, TryInto impl TryInto for T where     U: TryFrom,