pub trait DebuggerEvalEventMethods<D: DomTypes> {
// Required methods
fn Code(&self) -> DOMString;
fn PipelineId(&self) -> DomRoot<D::PipelineId>;
fn GetWorkerId(&self) -> Option<DOMString>;
fn GetFrameActorId(&self) -> Option<DOMString>;
fn IsTrusted(&self) -> bool;
}Required Methods§
fn Code(&self) -> DOMString
fn PipelineId(&self) -> DomRoot<D::PipelineId>
fn GetWorkerId(&self) -> Option<DOMString>
fn GetFrameActorId(&self) -> Option<DOMString>
fn IsTrusted(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".