Enum simplelog::TargetPadding
source · pub enum TargetPadding {
Left(usize),
Right(usize),
Off,
}
Expand description
Padding to be used for logging the thread id/name
Variants§
Left(usize)
Add spaces on the left side, up to usize many
Right(usize)
Add spaces on the right side, up to usize many
Off
Do not pad the thread id/name
Trait Implementations§
source§impl Clone for TargetPadding
impl Clone for TargetPadding
source§fn clone(&self) -> TargetPadding
fn clone(&self) -> TargetPadding
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TargetPadding
impl Debug for TargetPadding
impl Copy for TargetPadding
Auto Trait Implementations§
impl RefUnwindSafe for TargetPadding
impl Send for TargetPadding
impl Sync for TargetPadding
impl Unpin for TargetPadding
impl UnwindSafe for TargetPadding
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