#[repr(u32)]pub enum LogColors {
Ansi = 0,
None = 1,
}
Expand description
The log tool will write to the console with annotations for console colors, which helps with readability, but isn’t always supported. These are the options available for configuring those colors. https://stereokit.net/Pages/StereoKit/LogColors.html
see also Log
Variants§
Ansi = 0
Use console coloring annotations.
None = 1
Scrape out any color annotations, so logs are all completely plain text.
Trait Implementations§
impl Copy for LogColors
impl Eq for LogColors
impl StructuralPartialEq for LogColors
Auto Trait Implementations§
impl Freeze for LogColors
impl RefUnwindSafe for LogColors
impl Send for LogColors
impl Sync for LogColors
impl Unpin for LogColors
impl UnwindSafe for LogColors
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