pub struct CdpEvent {
pub method: String,
pub params: Value,
pub session_id: Option<String>,
}Expand description
Parsed CDP event (no id, has method).
Fields§
§method: StringThe CDP event method name (e.g., Page.loadEventFired).
params: ValueEvent parameters.
session_id: Option<String>Session ID if this event is session-scoped.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CdpEvent
impl RefUnwindSafe for CdpEvent
impl Send for CdpEvent
impl Sync for CdpEvent
impl Unpin for CdpEvent
impl UnsafeUnpin for CdpEvent
impl UnwindSafe for CdpEvent
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