Struct cdp::runtime::ExecutionContextDescription [] [src]

pub struct ExecutionContextDescription<'a> {
    pub id: ExecutionContextId,
    pub origin: Cow<'a, str>,
    pub name: Cow<'a, str>,
    pub aux_data: Option<Empty>,
}

Description of an isolated world.

Fields

Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed.

Execution context origin.

Human readable name describing given context.

Embedder-specific auxiliary data.

Trait Implementations

impl<'a> Clone for ExecutionContextDescription<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for ExecutionContextDescription<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for ExecutionContextDescription<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.