[−][src]Struct termimad::StrFit
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.
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
Auto Trait Implementations
impl RefUnwindSafe for StrFit[src]
impl Send for StrFit[src]
impl Sync for StrFit[src]
impl Unpin for StrFit[src]
impl UnwindSafe for StrFit[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,