[][src]Struct rusty_v8_m::String

#[repr(C)]pub struct String(_);

A JavaScript string value (ECMA-262, 4.3.17).

Implementations

impl String[src]

pub fn empty<'sc>(scope: &mut impl ToLocal<'sc>) -> Local<'sc, String>[src]

pub fn new_from_utf8<'sc>(
    scope: &mut impl ToLocal<'sc>,
    buffer: &[u8],
    new_type: NewStringType
) -> Option<Local<'sc, String>>
[src]

pub fn length(&self) -> usize[src]

Returns the number of characters (UTF-16 code units) in this string.

pub fn utf8_length(&self, scope: &mut impl InIsolate) -> usize[src]

Returns the number of bytes in the UTF-8 encoded representation of this string.

pub fn write_utf8(
    &self,
    scope: &mut impl InIsolate,
    buffer: &mut [u8],
    nchars_ref: Option<&mut usize>,
    options: WriteOptions
) -> usize
[src]

pub fn new<'sc>(
    scope: &mut impl ToLocal<'sc>,
    value: &str
) -> Option<Local<'sc, String>>
[src]

pub fn to_rust_string_lossy(&self, scope: &mut impl InIsolate) -> String[src]

Trait Implementations

impl Deref for String[src]

type Target = Name

The resulting type after dereferencing.

Auto Trait Implementations

impl RefUnwindSafe for String

impl Send for String

impl Sync for String

impl Unpin for String

impl UnwindSafe for String

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