Struct termimad::StrFit[][src]

pub struct StrFit { /* fields omitted */ }

information about the fitting of a string into a given width in cols.

The implementation here properly takes into account the width of special characters.

Backspaces are considered as having a width of -1.

This implementation is based on a replacement of the tab character.

Implementations

impl StrFit[src]

pub fn from(s: &str, cols_max: usize) -> Self[src]

pub fn count_fitting(s: &str, cols_max: usize) -> (usize, usize)[src]

return the counts in bytes and columns of the longest substring fitting the given number of columns

pub fn make_string(s: &str, cols_max: usize) -> (String, usize)[src]

return both the longest fitting string and the number of cols it takes on screen. We don’t build a string around the whole str, which could be costly if it’s very big

pub fn make_cow<'a>(s: &'a str, cols_max: usize) -> (Cow<'a, str>, usize)[src]

return both the longest fitting string and the number of cols it takes on screen. We don’t build a string around the whole str, which could be costly if it’s very big In case there’s no tab in the input string, we can return a pointer over part of the original str)

Trait Implementations

impl Clone for StrFit[src]

impl Copy for StrFit[src]

impl Debug for StrFit[src]

Auto Trait Implementations

impl RefUnwindSafe for StrFit

impl Send for StrFit

impl Sync for StrFit

impl Unpin for StrFit

impl UnwindSafe for StrFit

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.