[][src]Struct rquickjs::ContextBuilder

pub struct ContextBuilder<'a> { /* fields omitted */ }

Used for building a Context with a specific set of intrinsics

Methods

impl<'a> ContextBuilder<'a>[src]

pub fn new(rf: &'a Runtime) -> Self[src]

pub fn all(self) -> Self[src]

Enable all intrinsics

pub fn none(self) -> Self[src]

disable all intrinsics

pub fn date(self, value: bool) -> Self[src]

pub fn eval(self, value: bool) -> Self[src]

pub fn string_normalize(self, value: bool) -> Self[src]

pub fn regex_comp(self, value: bool) -> Self[src]

pub fn regex(self, value: bool) -> Self[src]

pub fn json(self, value: bool) -> Self[src]

pub fn proxy(self, value: bool) -> Self[src]

pub fn map_set(self, value: bool) -> Self[src]

pub fn typed_arrays(self, value: bool) -> Self[src]

pub fn promises(self, value: bool) -> Self[src]

pub fn big_int(self, value: bool) -> Self[src]

pub fn big_float(self, value: bool) -> Self[src]

pub fn big_decimal(self, value: bool) -> Self[src]

pub fn operator_overloading(self, value: bool) -> Self[src]

pub fn build(self) -> Result<Context, Error>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ContextBuilder<'a>

impl<'a> !Send for ContextBuilder<'a>

impl<'a> !Sync for ContextBuilder<'a>

impl<'a> Unpin for ContextBuilder<'a>

impl<'a> !UnwindSafe for ContextBuilder<'a>

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.