pub struct CdpResponse {
pub id: Option<i64>,
pub result: Option<Value>,
pub error: Option<CdpError>,
}Expand description
Outgoing CDP/JSON-RPC 2.0 response.
Fields§
§id: Option<i64>§result: Option<Value>§error: Option<CdpError>Trait Implementations§
Source§impl Debug for CdpResponse
impl Debug for CdpResponse
Auto Trait Implementations§
impl Freeze for CdpResponse
impl RefUnwindSafe for CdpResponse
impl Send for CdpResponse
impl Sync for CdpResponse
impl Unpin for CdpResponse
impl UnsafeUnpin for CdpResponse
impl UnwindSafe for CdpResponse
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