[][src]Struct rusty_v8::String

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

Methods

impl String[src]

pub fn new_from_utf8<'sc>(
    scope: &mut HandleScope<'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, isolate: &mut impl LockedIsolate) -> usize[src]

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

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

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

pub fn to_rust_string_lossy(&self, isolate: &mut impl LockedIsolate) -> 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

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.