pub struct PageCreateIsolatedWorldParams {
pub frame_id: String,
pub world_name: Option<String>,
pub grant_universal_access: Option<bool>,
}Expand description
Typed params for Page.createIsolatedWorld.
Fields§
§frame_id: StringFrame id that should receive the world.
world_name: Option<String>Optional world name.
grant_universal_access: Option<bool>Whether access to the command line API should be granted.
Trait Implementations§
Source§impl Clone for PageCreateIsolatedWorldParams
impl Clone for PageCreateIsolatedWorldParams
Source§fn clone(&self) -> PageCreateIsolatedWorldParams
fn clone(&self) -> PageCreateIsolatedWorldParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Command for PageCreateIsolatedWorldParams
impl Command for PageCreateIsolatedWorldParams
Source§type Params = PageCreateIsolatedWorldParams
type Params = PageCreateIsolatedWorldParams
Command parameters.
Source§type Output = PageCreateIsolatedWorldResult
type Output = PageCreateIsolatedWorldResult
Command result.
Source§impl<'de> Deserialize<'de> for PageCreateIsolatedWorldParams
impl<'de> Deserialize<'de> for PageCreateIsolatedWorldParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PageCreateIsolatedWorldParams
impl PartialEq for PageCreateIsolatedWorldParams
Source§fn eq(&self, other: &PageCreateIsolatedWorldParams) -> bool
fn eq(&self, other: &PageCreateIsolatedWorldParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PageCreateIsolatedWorldParams
impl StructuralPartialEq for PageCreateIsolatedWorldParams
Auto Trait Implementations§
impl Freeze for PageCreateIsolatedWorldParams
impl RefUnwindSafe for PageCreateIsolatedWorldParams
impl Send for PageCreateIsolatedWorldParams
impl Sync for PageCreateIsolatedWorldParams
impl Unpin for PageCreateIsolatedWorldParams
impl UnsafeUnpin for PageCreateIsolatedWorldParams
impl UnwindSafe for PageCreateIsolatedWorldParams
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