[][src]Struct broot::displayable_tree::DisplayableTree

pub struct DisplayableTree<'s, 't> {
    pub tree: &'t Tree,
    pub skin: &'s Skin,
    pub area: Area,
    pub in_app: bool,
}

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 (cleaning while printing isn't clean but cleaning before would involve a visible flash on redraw)

Fields

tree: &'t Treeskin: &'s Skinarea: Areain_app: bool

Methods

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

pub fn out_of_app(
    tree: &'t Tree,
    skin: &'s Skin,
    width: u16
) -> DisplayableTree<'s, 't>
[src]

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

Auto Trait Implementations

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

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

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

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

impl<'s, 't> !UnwindSafe for DisplayableTree<'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, 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.