pub struct CdpTargetInfo {
pub description: String,
pub devtools_frontend_url: String,
pub id: String,
pub title: String,
pub target_type: String,
pub url: String,
pub web_socket_debugger_url: String,
}Expand description
Response from GET /json/new and GET /json/list.
Fields§
§description: StringTarget description (usually empty for pages).
devtools_frontend_url: StringDevTools frontend URL.
id: StringUnique target identifier.
title: StringPage title.
target_type: StringTarget type (e.g. “page”, “background_page”).
url: StringCurrent URL loaded in the target.
web_socket_debugger_url: StringWebSocket debugger URL for direct CDP communication.
Trait Implementations§
Source§impl Clone for CdpTargetInfo
impl Clone for CdpTargetInfo
Source§fn clone(&self) -> CdpTargetInfo
fn clone(&self) -> CdpTargetInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CdpTargetInfo
impl Debug for CdpTargetInfo
Source§impl<'de> Deserialize<'de> for CdpTargetInfo
impl<'de> Deserialize<'de> for CdpTargetInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CdpTargetInfo
impl RefUnwindSafe for CdpTargetInfo
impl Send for CdpTargetInfo
impl Sync for CdpTargetInfo
impl Unpin for CdpTargetInfo
impl UnsafeUnpin for CdpTargetInfo
impl UnwindSafe for CdpTargetInfo
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