[][src]Struct rusty_v8::String

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

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

Methods

impl 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]

Methods from Deref<Target = Value>

pub fn is_undefined(&self) -> bool[src]

Returns true if this value is the undefined value. See ECMA-262 4.3.10.

pub fn is_null(&self) -> bool[src]

Returns true if this value is the null value. See ECMA-262 4.3.11.

pub fn is_null_or_undefined(&self) -> bool[src]

Returns true if this value is either the null or the undefined value. See ECMA-262 4.3.11. and 4.3.12

pub fn is_string(&self) -> bool[src]

Returns true if this value is an instance of the String type. See ECMA-262 8.4.

pub fn is_array(&self) -> bool[src]

Returns true if this value is an array. Note that it will return false for an Proxy for an array.

pub fn is_function(&self) -> bool[src]

Returns true if this value is a function.

pub fn is_object(&self) -> bool[src]

Returns true if this value is an object.

pub fn is_number(&self) -> bool[src]

Returns true if this value is a number.

pub fn strict_equals<'sc>(&self, that: Local<'sc, Value>) -> bool[src]

pub fn same_value<'sc>(&self, that: Local<'sc, Value>) -> bool[src]

Trait Implementations

impl Deref for String[src]

type Target = Value

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.