[][src]Struct boa::builtins::value::rcstring::RcString

pub struct RcString(_);

Implementations

impl RcString[src]

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

Trait Implementations

impl Borrow<str> for RcString[src]

impl Clone for RcString[src]

impl Debug for RcString[src]

impl Default for RcString[src]

impl Deref for RcString[src]

type Target = str

The resulting type after dereferencing.

impl Display for RcString[src]

impl Eq for RcString[src]

impl Finalize for RcString[src]

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

impl From<RcString> for Value[src]

impl From<String> for RcString[src]

impl Hash for RcString[src]

impl Ord for RcString[src]

impl<'_> PartialEq<&'_ str> for RcString[src]

impl PartialEq<RcString> for RcString[src]

impl PartialEq<RcString> for str[src]

impl<'_> PartialEq<RcString> for &'_ str[src]

impl PartialEq<str> for RcString[src]

impl PartialOrd<RcString> for RcString[src]

impl StructuralEq for RcString[src]

impl StructuralPartialEq for RcString[src]

impl Trace for RcString[src]

Auto Trait Implementations

impl !RefUnwindSafe for RcString

impl !Send for RcString

impl !Sync for RcString

impl Unpin for RcString

impl UnwindSafe for RcString

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.

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