[][src]Struct mtots_core::RcStr

pub struct RcStr(_);

Implemented like Rc so that it can stay a thin pointer, but dereferences to &str like Rc

Implementations

impl RcStr[src]

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

pub fn try_unwrap(rcstr: Self) -> Result<String, RcStr>[src]

pub fn unwrap_or_clone(rcstr: Self) -> String[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<&'_ Rc<String>> for RcStr[src]

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

impl From<Rc<String>> for RcStr[src]

impl From<String> for RcStr[src]

impl Hash for RcStr[src]

impl Ord for RcStr[src]

impl PartialEq<RcStr> for RcStr[src]

impl PartialOrd<RcStr> for RcStr[src]

impl StructuralEq for RcStr[src]

impl StructuralPartialEq 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.