pub struct CreateIsolatedWorldParamsBuilder<'a> { /* private fields */ }Implementations§
Source§impl<'a> CreateIsolatedWorldParamsBuilder<'a>
impl<'a> CreateIsolatedWorldParamsBuilder<'a>
Sourcepub fn worldName(self, worldName: impl Into<Cow<'a, str>>) -> Self
pub fn worldName(self, worldName: impl Into<Cow<'a, str>>) -> Self
An optional name which is reported in the Execution Context.
Sourcepub fn grantUniveralAccess(self, grantUniveralAccess: bool) -> Self
pub fn grantUniveralAccess(self, grantUniveralAccess: bool) -> Self
Whether or not universal access should be granted to the isolated world. This is a powerful option, use with caution.
pub fn build(self) -> CreateIsolatedWorldParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for CreateIsolatedWorldParamsBuilder<'a>
impl<'a> RefUnwindSafe for CreateIsolatedWorldParamsBuilder<'a>
impl<'a> Send for CreateIsolatedWorldParamsBuilder<'a>
impl<'a> Sync for CreateIsolatedWorldParamsBuilder<'a>
impl<'a> Unpin for CreateIsolatedWorldParamsBuilder<'a>
impl<'a> UnsafeUnpin for CreateIsolatedWorldParamsBuilder<'a>
impl<'a> UnwindSafe for CreateIsolatedWorldParamsBuilder<'a>
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