[][src]Struct finalfusion::subword::StrWithCharLen

pub struct StrWithCharLen<'a> { /* fields omitted */ }

A string reference with its length in characters.

Methods

impl<'a> StrWithCharLen<'a>[src]

pub fn new(s: &'a str) -> Self[src]

Construct StrWithCharLen.

Counts the number of chars in a &str and constructs a StrWithCharLen from it.

pub fn as_str(&self) -> &str[src]

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

Trait Implementations

impl<'a> Deref for StrWithCharLen<'a>[src]

type Target = str

The resulting type after dereferencing.

impl<'a> From<&'a str> for StrWithCharLen<'a>[src]

impl<'a> Hash for StrWithCharLen<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for StrWithCharLen<'a>

impl<'a> Send for StrWithCharLen<'a>

impl<'a> Sync for StrWithCharLen<'a>

impl<'a> Unpin for StrWithCharLen<'a>

impl<'a> UnwindSafe for StrWithCharLen<'a>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,