[][src]Struct ecmascript::ast::ustring::UString

pub struct UString { /* fields omitted */ }

Unicode String

Methods

impl UString[src]

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

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

pub fn iter(&self) -> Iter<char>[src]

pub fn codePointAt(&self, index: usize) -> Option<u32>[src]

pub fn startsWith(&self, other: &Self) -> bool[src]

pub fn endsWith(&self, other: &Self) -> bool[src]

pub fn repeat(&mut self, num: usize) -> Self[src]

pub fn indexOf(&self, s: &Self) -> Option<usize>[src]

pub fn toUpperCase(&self) -> Self[src]

pub fn toLowerCase(&self) -> Self[src]

pub fn trimStart(&self) -> Self[src]

pub fn trimLeft(&self) -> Self[src]

pub fn trimEnd(&self) -> Self[src]

pub fn trimRight(&self) -> Self[src]

pub fn trim(&self) -> Self[src]

pub fn slice(&self, start: usize, size: usize) -> Self[src]

pub fn replace(&self, s: &Self, replace_with: &Self) -> Self[src]

Trait Implementations

impl Display for UString[src]

impl Debug for UString[src]

Auto Trait Implementations

impl Send for UString

impl Sync for UString

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]