[][src]Struct rusty_v8::String

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

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

Implementations

impl String[src]

pub fn empty<'s>(scope: &mut HandleScope<'s, ()>) -> Local<'s, String>[src]

pub fn new_from_utf8<'s>(
    scope: &mut HandleScope<'s, ()>,
    buffer: &[u8],
    new_type: NewStringType
) -> Option<Local<'s, 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 Isolate) -> usize[src]

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

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

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

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

Trait Implementations

impl Deref for String[src]

type Target = Name

The resulting type after dereferencing.

impl Eq for String[src]

impl Hash for String[src]

impl<'s> PartialEq<Name> for String[src]

impl<'s> PartialEq<Primitive> for String[src]

impl<'s> PartialEq<String> for Value[src]

impl<'s> PartialEq<String> for Primitive[src]

impl<'s> PartialEq<String> for Name[src]

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

impl<'s> PartialEq<Value> for String[src]

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.