[][src]Struct rquickjs::String

pub struct String<'js>(_);

Rust representation of a javascript string.

Methods

impl<'js> String<'js>[src]

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

Convert the javascript string to a rust string.

pub fn from_str(ctx: Ctx<'js>, s: &str) -> Result<Self>[src]

Trait Implementations

impl<'js> Clone for String<'js>[src]

impl<'js> Debug for String<'js>[src]

impl<'js> FromJs<'js> for String<'js>[src]

impl<'js> PartialEq<String<'js>> for String<'js>[src]

impl<'js> StructuralPartialEq for String<'js>[src]

impl<'js> ToJs<'js> for String<'js>[src]

Auto Trait Implementations

impl<'js> !RefUnwindSafe for String<'js>

impl<'js> !Send for String<'js>

impl<'js> !Sync for String<'js>

impl<'js> Unpin for String<'js>

impl<'js> UnwindSafe for String<'js>

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, 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.