Struct v_common_v8::inspector::InspectorSession[][src]

pub struct InspectorSession { /* fields omitted */ }

A local inspector session that can be used to send and receive protocol messages directly on the same thread as an isolate.

Implementations

impl InspectorSession[src]

pub fn new(inspector_ptr: *mut DenoInspector) -> Box<Self>[src]

pub async fn post_message(
    &mut self,
    method: &str,
    params: Option<Value>
) -> Result<Value, AnyError>
[src]

Methods from Deref<Target = V8InspectorSession>

pub fn dispatch_protocol_message(&mut self, message: StringView<'_>)[src]

pub fn schedule_pause_on_next_statement(
    &mut self,
    reason: StringView<'_>,
    detail: StringView<'_>
)
[src]

Trait Implementations

impl ChannelImpl for InspectorSession[src]

impl Deref for InspectorSession[src]

type Target = V8InspectorSession

The resulting type after dereferencing.

impl DerefMut for InspectorSession[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsChannel for T where
    T: ChannelImpl
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,