pub struct Metadata {
pub wall_time: i64,
pub internal: Option<bool>,
pub location: Option<Location>,
pub title: Option<String>,
}Expand description
Metadata attached to every Playwright protocol message
Contains timing information and optional location data for debugging.
Fields§
§wall_time: i64Unix timestamp in milliseconds
internal: Option<bool>Whether this is an internal call (not user-facing API)
location: Option<Location>Source location where the API was called
title: Option<String>Optional title for the operation
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Metadata
impl<'de> Deserialize<'de> for Metadata
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 Metadata
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnwindSafe for Metadata
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