Struct chrome_remote_interface::CdpClient[][src]

pub struct CdpClient { /* fields omitted */ }

Chrome DevTools Protocol Client.

This serve as browser session.

Implementations

impl CdpClient[src]

pub async fn connect(
    url: &Url
) -> Result<(Self, impl Future<Output = Result<()>>)>
[src]

Connect with CDP Websocket.

pub fn session<S: Deref<Target = SessionId>>(
    &mut self,
    session_id: S
) -> CdpSession
[src]

Construct session with target.

Methods from Deref<Target = CdpSession>

pub async fn request<C>(&mut self, command: C) -> Result<C::Return> where
    C: Command
[src]

Request for Chrome DevTools Protocol Command.

pub fn events(&mut self) -> Result<CdpEvents>[src]

Subscribe Chrome DevTools Protocol Event.

Trait Implementations

impl Debug for CdpClient[src]

impl Deref for CdpClient[src]

type Target = CdpSession

The resulting type after dereferencing.

impl DerefMut for CdpClient[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> 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>,