pub struct CdpClient<T> { /* private fields */ }Expand description
Async typed CDP client.
Implementations§
Source§impl<T> CdpClient<T>where
T: CdpTransport,
impl<T> CdpClient<T>where
T: CdpTransport,
Sourcepub async fn execute<C>(&self, params: &C::Params) -> Result<C::Output>where
C: Command,
pub async fn execute<C>(&self, params: &C::Params) -> Result<C::Output>where
C: Command,
Send a typed CDP command.
Auto Trait Implementations§
impl<T> !Freeze for CdpClient<T>
impl<T> RefUnwindSafe for CdpClient<T>where
T: RefUnwindSafe,
impl<T> Send for CdpClient<T>where
T: Send,
impl<T> Sync for CdpClient<T>where
T: Sync,
impl<T> Unpin for CdpClient<T>where
T: Unpin,
impl<T> UnsafeUnpin for CdpClient<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for CdpClient<T>where
T: UnwindSafe,
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