#[repr(C)]pub struct RealmCreationOptions {Show 15 fields
    pub traceGlobal_: JSTraceOp,
    pub compSpec_: CompartmentSpecifier,
    pub __bindgen_anon_1: RealmCreationOptions__bindgen_ty_1,
    pub profilerRealmID_: u64,
    pub locale_: RefPtr<LocaleString>,
    pub invisibleToDebugger_: bool,
    pub preserveJitCode_: bool,
    pub sharedMemoryAndAtomics_: bool,
    pub defineSharedArrayBufferConstructor_: bool,
    pub coopAndCoep_: bool,
    pub toSource_: bool,
    pub secureContext_: bool,
    pub freezeBuiltins_: bool,
    pub forceUTC_: bool,
    pub alwaysUseFdlibm_: bool,
}Expand description
RealmCreationOptions specifies options relevant to creating a new realm, that are either immutable characteristics of that realm or that are discarded after the realm has been created.
Access to these options on an existing realm is read-only: if you need particular selections, you must make them before you create the realm.
Fields§
§traceGlobal_: JSTraceOp§compSpec_: CompartmentSpecifier§__bindgen_anon_1: RealmCreationOptions__bindgen_ty_1§profilerRealmID_: u64§locale_: RefPtr<LocaleString>§invisibleToDebugger_: bool§preserveJitCode_: bool§coopAndCoep_: bool§toSource_: bool§secureContext_: bool§freezeBuiltins_: bool§forceUTC_: bool§alwaysUseFdlibm_: boolAuto Trait Implementations§
impl Freeze for RealmCreationOptions
impl !RefUnwindSafe for RealmCreationOptions
impl !Send for RealmCreationOptions
impl !Sync for RealmCreationOptions
impl Unpin for RealmCreationOptions
impl UnwindSafe for RealmCreationOptions
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
Source§impl<T> Filterable for T
 
impl<T> Filterable for T
Source§fn filterable(
    self,
    filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
 
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more