Struct ptree::print_config::StaticIndentChars[][src]

pub struct StaticIndentChars {
    pub down_and_right: &'static str,
    pub down: &'static str,
    pub turn_right: &'static str,
    pub right: &'static str,
    pub empty: &'static str,
}

Set of characters use to draw indentation lines (branches)

Fields

Character for pointing down and right ().

Character for pointing straight down (|).

Character for turning from down to right ().

Character for pointing right ().

Empty character ().

Trait Implementations

impl From<StaticIndentChars> for IndentChars
[src]

Performs the conversion.

impl Clone for StaticIndentChars
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for StaticIndentChars
[src]

impl Debug for StaticIndentChars
[src]

Formats the value using the given formatter. Read more

impl PartialEq for StaticIndentChars
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for StaticIndentChars
[src]

Auto Trait Implementations