pub struct CdpRequest {
pub id: u32,
pub method: String,
pub params: Value,
pub session_id: Option<String>,
}Expand description
An outgoing CDP request. session_id is None for browser-level commands.
Fields§
§id: u32§method: String§params: Value§session_id: Option<String>Trait Implementations§
Source§impl Debug for CdpRequest
impl Debug for CdpRequest
Auto Trait Implementations§
impl Freeze for CdpRequest
impl RefUnwindSafe for CdpRequest
impl Send for CdpRequest
impl Sync for CdpRequest
impl Unpin for CdpRequest
impl UnsafeUnpin for CdpRequest
impl UnwindSafe for CdpRequest
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