[][src]Struct mtots_core::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 unwrap_or_clone(self) -> String[src]

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

Trait Implementations

impl AsRef<[u8]> for RcStr[src]

impl AsRef<OsStr> for RcStr[src]

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<&'_ &'_ str> for RcStr[src]

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

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

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

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

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

impl From<RcStr> for GlobalElement[src]

impl From<RcStr> for Value[src]

impl From<RcStr> for ConstVal[src]

impl From<RcStr> for Key[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]

impl<'_> TryFrom<&'_ OsStr> for RcStr[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ OsString> for RcStr[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ Value> for RcStr[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<OsString> for RcStr[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Value> for RcStr[src]

type Error = Error

The type returned in the event of a conversion error.

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.