Enum pipedconsole::ErrorKind [−][src]
pub enum ErrorKind {
Warning,
Error,
Fatal,
}Expand description
The error type returned by all functions that interact with a
Console.
Variants
Errors that could go away after several trys and are usually not that fatal.
Various errors wich aren’t really common, but can be fatal. (eg. CString::new() failure)
The Console cannot be used anymore and is useless.
If you get this kind of error from the crate::Console::new() function, it is likely
you will not be able to create a Console in the future as well.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ErrorKindimpl UnwindSafe for ErrorKindBlanket Implementations
Mutably borrows from an owned value. Read more