[][src]Struct alacritty::config::debug::Debug

pub struct Debug {
    pub log_level: LevelFilter,
    pub print_events: bool,
    pub persistent_logging: bool,
    pub render_timer: bool,
    pub ref_test: bool,
}

Debugging options.

Fields

log_level: LevelFilterprint_events: boolpersistent_logging: bool

Keep the log file after quitting.

render_timer: bool

Should show render timer.

ref_test: bool

Record ref test.

Trait Implementations

impl Clone for Debug[src]

impl Copy for Debug[src]

impl Debug for Debug[src]

impl Default for Debug[src]

impl<'de> Deserialize<'de> for Debug[src]

impl Eq for Debug[src]

impl Ord for Debug[src]

impl PartialEq<Debug> for Debug[src]

impl PartialOrd<Debug> for Debug[src]

impl StructuralEq for Debug[src]

impl StructuralPartialEq for Debug[src]

Auto Trait Implementations

impl RefUnwindSafe for Debug

impl Send for Debug

impl Sync for Debug

impl Unpin for Debug

impl UnwindSafe for Debug

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ResetDiscriminant<T> for T where
    T: Copy
[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.