pub enum Handler {
Console,
File,
String,
Custom(String),
}Expand description
Available handlers.
Variants§
Console
Refers to the ConsoleHandler.
File
Refers to the FileHandler.
String
Refers to the StringHandler.
Custom(String)
Refers to a custom handler; by default: MockHandler.
Implementations§
Trait Implementations§
impl Eq for Handler
impl StructuralPartialEq for Handler
Auto Trait Implementations§
impl Freeze for Handler
impl RefUnwindSafe for Handler
impl Send for Handler
impl Sync for Handler
impl Unpin for Handler
impl UnwindSafe for Handler
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