[][src]Struct log4rs::encode::Style

pub struct Style {
    pub text: Option<Color>,
    pub background: Option<Color>,
    pub intense: Option<bool>,
    // some fields omitted
}

The style applied to text output.

Any fields set to None will be set to their default format, as defined by the Writer.

Fields

text: Option<Color>

The text (or foreground) color.

background: Option<Color>

The background color.

intense: Option<bool>

True if the text should have increased intensity.

Methods

impl Style[src]

pub fn new() -> Style[src]

Returns a Style with all fields set to their defaults.

pub fn text(&mut self, text: Color) -> &mut Style[src]

Sets the text color.

pub fn background(&mut self, background: Color) -> &mut Style[src]

Sets the background color.

pub fn intense(&mut self, intense: bool) -> &mut Style[src]

Sets the text intensity.

Trait Implementations

impl Clone for Style[src]

impl Debug for Style[src]

impl Default for Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any