pub struct GetExecutionContext {
pub dom_world: DOMWorldKind,
pub frame_id: Option<FrameId>,
pub tx: Sender<Option<ExecutionContextId>>,
}Fields§
§dom_world: DOMWorldKindFor which world the execution context was requested
frame_id: Option<FrameId>The if of the frame to get the ExecutionContext for
tx: Sender<Option<ExecutionContextId>>Sender half of the channel to send the response back
Implementations§
Source§impl GetExecutionContext
impl GetExecutionContext
pub fn new(tx: Sender<Option<ExecutionContextId>>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetExecutionContext
impl !RefUnwindSafe for GetExecutionContext
impl Send for GetExecutionContext
impl Sync for GetExecutionContext
impl Unpin for GetExecutionContext
impl !UnwindSafe for GetExecutionContext
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more