[][src]Enum genco::Cons

pub enum Cons<'el> {
    Borrowed(&'el str),
    Rc(Rc<String>),
}

A managed string that permits immutable borrowing.

Variants

Borrowed(&'el str)

A borrowed string.

Rc(Rc<String>)

A refcounted string.

Trait Implementations

impl<'a> AsRef<str> for Cons<'a>[src]

impl<'el> Clone for Cons<'el>[src]

impl<'el> Debug for Cons<'el>[src]

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

type Target = str

The resulting type after dereferencing.

impl<'el> Display for Cons<'el>[src]

impl<'el> Eq for Cons<'el>[src]

impl<'el> From<&'el str> for Cons<'el>[src]

impl<'el, C> From<Cons<'el>> for Element<'el, C>[src]

impl<'el> From<Cons<'el>> for Name<'el>[src]

impl<'el> From<Cow<'el, str>> for Cons<'el>[src]

impl<'el> From<Rc<String>> for Cons<'el>[src]

impl<'el> From<String> for Cons<'el>[src]

impl<'el> Hash for Cons<'el>[src]

impl<'el> Ord for Cons<'el>[src]

impl<'el> PartialEq<Cons<'el>> for Cons<'el>[src]

impl<'el> PartialOrd<Cons<'el>> for Cons<'el>[src]

impl<'el> Quoted<'el> for Cons<'el>[src]

impl<'el> StructuralEq for Cons<'el>[src]

impl<'el> StructuralPartialEq for Cons<'el>[src]

Auto Trait Implementations

impl<'el> !RefUnwindSafe for Cons<'el>

impl<'el> !Send for Cons<'el>

impl<'el> !Sync for Cons<'el>

impl<'el> Unpin for Cons<'el>

impl<'el> UnwindSafe for Cons<'el>

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.