pub struct CreateIsolatedWorld {
pub method: CreateIsolatedWorldMethod,
pub params: CreateIsolatedWorldParams,
}Expand description
Creates an isolated world for the given frame. createIsolatedWorld
Fields§
§method: CreateIsolatedWorldMethod§params: CreateIsolatedWorldParamsImplementations§
Source§impl CreateIsolatedWorld
impl CreateIsolatedWorld
pub fn builder() -> CreateIsolatedWorldBuilder
Source§impl CreateIsolatedWorld
impl CreateIsolatedWorld
pub const IDENTIFIER: &'static str = "Page.createIsolatedWorld"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CreateIsolatedWorld
impl Clone for CreateIsolatedWorld
Source§fn clone(&self) -> CreateIsolatedWorld
fn clone(&self) -> CreateIsolatedWorld
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 CommandResult for CreateIsolatedWorld
impl CommandResult for CreateIsolatedWorld
type Result = CreateIsolatedWorldResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CreateIsolatedWorld
impl Debug for CreateIsolatedWorld
Source§impl<'de> Deserialize<'de> for CreateIsolatedWorld
impl<'de> Deserialize<'de> for CreateIsolatedWorld
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 From<CreateIsolatedWorld> for BrowserProtocolCommands
impl From<CreateIsolatedWorld> for BrowserProtocolCommands
Source§fn from(v: CreateIsolatedWorld) -> Self
fn from(v: CreateIsolatedWorld) -> Self
Converts to this type from the input type.
Source§impl From<CreateIsolatedWorld> for Command
impl From<CreateIsolatedWorld> for Command
Source§fn from(v: CreateIsolatedWorld) -> Self
fn from(v: CreateIsolatedWorld) -> Self
Converts to this type from the input type.
Source§impl From<CreateIsolatedWorld> for PageCommands
impl From<CreateIsolatedWorld> for PageCommands
Source§fn from(v: CreateIsolatedWorld) -> Self
fn from(v: CreateIsolatedWorld) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CreateIsolatedWorld
impl PartialEq for CreateIsolatedWorld
Source§impl Serialize for CreateIsolatedWorld
impl Serialize for CreateIsolatedWorld
Source§impl TryFrom<BrowserProtocolCommands> for CreateIsolatedWorld
impl TryFrom<BrowserProtocolCommands> for CreateIsolatedWorld
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <CreateIsolatedWorld as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <CreateIsolatedWorld as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for CreateIsolatedWorld
impl TryFrom<Command> for CreateIsolatedWorld
Source§impl TryFrom<PageCommands> for CreateIsolatedWorld
impl TryFrom<PageCommands> for CreateIsolatedWorld
Source§type Error = PageCommands
type Error = PageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageCommands,
) -> Result<Self, <CreateIsolatedWorld as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <CreateIsolatedWorld as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for CreateIsolatedWorld
Auto Trait Implementations§
impl Freeze for CreateIsolatedWorld
impl RefUnwindSafe for CreateIsolatedWorld
impl Send for CreateIsolatedWorld
impl Sync for CreateIsolatedWorld
impl Unpin for CreateIsolatedWorld
impl UnsafeUnpin for CreateIsolatedWorld
impl UnwindSafe for CreateIsolatedWorld
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