[][src]Struct kb::RcStr

pub struct RcStr(_);

str smarat pointer that also stashes chars as needed so that char access can be constant time

Implementations

impl RcStr[src]

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

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

pub fn charslice(&self, start: usize, end: usize) -> RcStr[src]

pub fn getchar(&self, index: usize) -> Option<char>[src]

Trait Implementations

impl AsRef<str> for RcStr[src]

impl Borrow<str> for RcStr[src]

impl Clone for RcStr[src]

impl Debug for RcStr[src]

impl Deref for RcStr[src]

type Target = str

The resulting type after dereferencing.

impl Display for RcStr[src]

impl Eq for RcStr[src]

impl<'_> From<&'_ RcStr> for Val[src]

impl<'_> From<&'_ String> for RcStr[src]

impl<'_> From<&'_ str> for RcStr[src]

impl From<RcStr> for Val[src]

impl From<String> for RcStr[src]

impl Hash for RcStr[src]

impl Index<Range<usize>> for RcStr[src]

type Output = str

The returned type after indexing.

impl Index<RangeFrom<usize>> for RcStr[src]

type Output = str

The returned type after indexing.

impl Index<RangeFull> for RcStr[src]

type Output = str

The returned type after indexing.

impl Index<RangeTo<usize>> for RcStr[src]

type Output = str

The returned type after indexing.

impl Ord for RcStr[src]

impl PartialEq<RcStr> for RcStr[src]

impl PartialOrd<RcStr> for RcStr[src]

Auto Trait Implementations

impl !RefUnwindSafe for RcStr

impl !Send for RcStr

impl !Sync for RcStr

impl Unpin for RcStr

impl !UnwindSafe for RcStr

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.