pub enum MessageLocation {
SameLine,
NewLine,
}
Expand description
Specify where the message will be logged.
Variants§
SameLine
The message will be on the same line as other info (level, path…)
NewLine
The message will be on its own line, a new after other info.
Auto Trait Implementations§
impl Freeze for MessageLocation
impl RefUnwindSafe for MessageLocation
impl Send for MessageLocation
impl Sync for MessageLocation
impl Unpin for MessageLocation
impl UnwindSafe for MessageLocation
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