Struct broot::display::DisplayableTree[][src]

pub struct DisplayableTree<'a, 's, 't> {
    pub app_state: Option<&'a AppState>,
    pub tree: &'t Tree,
    pub skin: &'s StyleMap,
    pub area: Area,
    pub in_app: bool,
    pub ext_colors: &'s ExtColorMap,
}

A tree wrapper which can be used either

  • to write on the screen in the application,
  • or to write in a file or an exported string. Using it in the application (with in_app true) means that
  • the selection is drawn
  • a scrollbar may be drawn
  • the empty lines will be erased

Fields

app_state: Option<&'a AppState>tree: &'t Treeskin: &'s StyleMaparea: Areain_app: boolext_colors: &'s ExtColorMap

Implementations

impl<'a, 's, 't> DisplayableTree<'a, 's, 't>[src]

pub fn out_of_app(
    tree: &'t Tree,
    skin: &'s StyleMap,
    ext_colors: &'s ExtColorMap,
    width: u16,
    height: u16
) -> DisplayableTree<'a, 's, 't>
[src]

pub fn write_root_line<'w, W: Write>(
    &self,
    cw: &mut CropWriter<'w, W>,
    selected: bool
) -> Result<(), ProgramError>
[src]

pub fn extend_line_bg<'w, W: Write>(
    &self,
    cw: &mut CropWriter<'w, W>,
    selected: bool
) -> Result<(), ProgramError>
[src]

if in app, extend the background till the end of screen row

pub fn write_on<W: Write>(&self, f: &mut W) -> Result<(), ProgramError>[src]

write the whole tree on the given W

Auto Trait Implementations

impl<'a, 's, 't> RefUnwindSafe for DisplayableTree<'a, 's, 't>

impl<'a, 's, 't> Send for DisplayableTree<'a, 's, 't>

impl<'a, 's, 't> Sync for DisplayableTree<'a, 's, 't>

impl<'a, 's, 't> Unpin for DisplayableTree<'a, 's, 't>

impl<'a, 's, 't> UnwindSafe for DisplayableTree<'a, 's, 't>

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,