[][src]Struct rusty_v8_m::inspector::V8Inspector

#[repr(C)]pub struct V8Inspector(_);

Methods

impl V8Inspector[src]

pub fn create<T>(
    isolate: &mut impl InIsolate,
    client: &mut T
) -> UniqueRef<V8Inspector> where
    T: AsV8InspectorClient
[src]

pub fn connect<T>(
    &mut self,
    context_group_id: i32,
    channel: &mut T,
    state: &StringView
) -> UniqueRef<V8InspectorSession> where
    T: AsChannel
[src]

pub fn context_created(
    &mut self,
    context: Local<Context>,
    context_group_id: i32,
    human_readable_name: &StringView
)
[src]

Note: this method deviates from the C++ API here because it's a lot of work to bind the V8ContextInfo, which is not used elsewhere.

Trait Implementations

impl Drop for V8Inspector[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.