pub struct BasePrimordials<'js> {Show 27 fields
pub constructor_map: Constructor<'js>,
pub constructor_set: Constructor<'js>,
pub constructor_date: Constructor<'js>,
pub constructor_error: Constructor<'js>,
pub constructor_type_error: Constructor<'js>,
pub constructor_range_error: Constructor<'js>,
pub constructor_regexp: Constructor<'js>,
pub constructor_uint8array: Constructor<'js>,
pub constructor_array_buffer: Constructor<'js>,
pub constructor_proxy: Constructor<'js>,
pub constructor_object: Constructor<'js>,
pub constructor_bool: Constructor<'js>,
pub constructor_number: Constructor<'js>,
pub constructor_string: Constructor<'js>,
pub prototype_object: Object<'js>,
pub prototype_date: Object<'js>,
pub prototype_regexp: Object<'js>,
pub prototype_set: Object<'js>,
pub prototype_map: Object<'js>,
pub prototype_error: Object<'js>,
pub function_array_from: Function<'js>,
pub function_array_buffer_is_view: Function<'js>,
pub function_get_own_property_descriptor: Function<'js>,
pub function_reflect_own_keys: Function<'js>,
pub function_parse_int: Function<'js>,
pub function_parse_float: Function<'js>,
pub prototype_iterator: Object<'js>,
}Fields§
§constructor_map: Constructor<'js>§constructor_set: Constructor<'js>§constructor_date: Constructor<'js>§constructor_error: Constructor<'js>§constructor_type_error: Constructor<'js>§constructor_range_error: Constructor<'js>§constructor_regexp: Constructor<'js>§constructor_uint8array: Constructor<'js>§constructor_array_buffer: Constructor<'js>§constructor_proxy: Constructor<'js>§constructor_object: Constructor<'js>§constructor_bool: Constructor<'js>§constructor_number: Constructor<'js>§constructor_string: Constructor<'js>§prototype_object: Object<'js>§prototype_date: Object<'js>§prototype_regexp: Object<'js>§prototype_set: Object<'js>§prototype_map: Object<'js>§prototype_error: Object<'js>§function_array_from: Function<'js>§function_array_buffer_is_view: Function<'js>§function_get_own_property_descriptor: Function<'js>§function_reflect_own_keys: Function<'js>§function_parse_int: Function<'js>§function_parse_float: Function<'js>§prototype_iterator: Object<'js>Trait Implementations§
Source§impl<'js> JsLifetime<'js> for BasePrimordials<'js>
impl<'js> JsLifetime<'js> for BasePrimordials<'js>
Source§type Changed<'to> = BasePrimordials<'to>
type Changed<'to> = BasePrimordials<'to>
The target which has the same type as a
Self but with another lifetime 'tAuto Trait Implementations§
impl<'js> !Send for BasePrimordials<'js>
impl<'js> !Sync for BasePrimordials<'js>
impl<'js> !UnwindSafe for BasePrimordials<'js>
impl<'js> Freeze for BasePrimordials<'js>
impl<'js> RefUnwindSafe for BasePrimordials<'js>
impl<'js> Unpin for BasePrimordials<'js>
impl<'js> UnsafeUnpin for BasePrimordials<'js>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more