Struct broot::hex::HexView[][src]

pub struct HexView { /* fields omitted */ }

a preview showing the content of a file in hexa

Implementations

impl HexView[src]

pub fn new(path: PathBuf) -> Result<Self>[src]

pub fn line_count(&self) -> usize[src]

pub fn try_scroll(&mut self, cmd: ScrollCommand) -> bool[src]

pub fn select_first(&mut self)[src]

pub fn select_last(&mut self)[src]

pub fn get_page(
    &mut self,
    start_line_idx: usize,
    line_count: usize
) -> Result<Vec<HexLine>>
[src]

pub fn display(
    &mut self,
    w: &mut W,
    _screen: Screen,
    panel_skin: &PanelSkin,
    area: &Area
) -> Result<(), ProgramError>
[src]

pub fn display_info(
    &mut self,
    w: &mut W,
    _screen: Screen,
    panel_skin: &PanelSkin,
    area: &Area
) -> Result<(), ProgramError>
[src]

Auto Trait Implementations

impl RefUnwindSafe for HexView

impl Send for HexView

impl Sync for HexView

impl Unpin for HexView

impl UnwindSafe for HexView

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