pub struct CdpSession {
pub id: String,
pub target_id: String,
pub ws_url: String,
pub created_at: DateTime<Utc>,
}Expand description
Internal tracking data for a CDP tab/target — the fighter’s corner intel.
Fields§
§id: StringOur internal session UUID (matches BrowserSession.id).
target_id: StringThe CDP target ID returned by Chrome.
ws_url: StringThe WebSocket debugger URL for this target.
created_at: DateTime<Utc>When this CDP session was created.
Trait Implementations§
Source§impl Clone for CdpSession
impl Clone for CdpSession
Source§fn clone(&self) -> CdpSession
fn clone(&self) -> CdpSession
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 CdpSession
impl Debug for CdpSession
Source§impl<'de> Deserialize<'de> for CdpSession
impl<'de> Deserialize<'de> for CdpSession
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 CdpSession
impl RefUnwindSafe for CdpSession
impl Send for CdpSession
impl Sync for CdpSession
impl Unpin for CdpSession
impl UnsafeUnpin for CdpSession
impl UnwindSafe for CdpSession
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