[][src]Struct adbfbinlib::ctrl::tui::Tui

pub struct Tui {
    handle: Cursive,
    alive: AliveDisplayData,
}

The Tui wrapper holds cursive tui and the alive data of the ui-state needed.

Fields

handle: Cursivealive: AliveDisplayData

Implementations

impl Tui[src]

pub fn new(
    title: String,
    paths: &Vec<String>,
    with_net: bool
) -> Result<Self, String>
[src]

Steps through cursive tui and if a message is received, it will:

  • update the ui (net and path)
  • re-send a timed animation change

Arguments

  • title - the title of the tui
  • paths - the paths to be shown searching bar and name them
  • with_net - if net feature is activated for displaying live data

pub async fn refresh(&mut self) -> bool[src]

Refreshes the screen and returns if tui is shut down (e.g. due to 'q' quitting)

pub async fn run_cursive(
    &mut self,
    tui_sender: &Sender<InternalUiMsg>,
    tui_receiver: &Receiver<InternalUiMsg>
)
[src]

Steps through cursive tui and if a message is received, it will:

  • update the ui (net and path)
  • re-send a timed animation change

Arguments

  • tui_sender - the sender to re-send messages
  • tui_receiver - the receiver to listen on

pub fn split_intelligently_ralign_vec(
    vec: &Vec<String>,
    max_len: usize
) -> Vec<String>
[src]

Example test

use adbfbinlib::ctrl::tui::Tui;

let boundary = 15;
let input_vec: Vec<String> =
   vec!["The duck went swimming.".into(),
       "A cool hat does not fit you.".into()];
let expected_output: Vec<String> =
   vec!["The duc..mming.".into(), "A cool ..t you.".into()];
let output = adbfbinlib::ctrl::tui::Tui::split_intelligently_ralign_vec(&input_vec, boundary);

pub fn split_intelligently_ralign(el: &String, max_len: usize) -> String[src]

fn toggle_alive(&mut self, signal: CollectionPathAlive, on: AliveSym)[src]

Toggle the alive signal by changing the data inside signal can be for the path search or net search.

fn build_tui(
    title: String,
    paths: &Vec<String>,
    with_net: bool
) -> Result<Cursive, String>
[src]

Builds up the whole cursive tui: views, lists, etc. Net features result in a slightly different display, that found host can be listed.

Blocks until channel counterpart receiver gives an ok.

Arguments

  • title - The title to be shown on top
  • paths - the paths as string to be searched
  • with_net - if the net list box has to be displayed

Auto Trait Implementations

impl !RefUnwindSafe for Tui[src]

impl !Send for Tui[src]

impl !Sync for Tui[src]

impl Unpin for Tui[src]

impl !UnwindSafe for Tui[src]

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> Conv for T

impl<T> Conv for T

impl<T> Erased for T

impl<T> FmtForward for T

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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>, 

impl<T> With for T