pub struct DebugSnapshot {
pub timestamp: i64,
pub webview_state: WebViewState,
pub console_logs: Vec<ConsoleLogEntry>,
pub screenshot_path: Option<PathBuf>,
pub dom_snapshot_path: Option<PathBuf>,
}Fields§
§timestamp: i64§webview_state: WebViewState§console_logs: Vec<ConsoleLogEntry>§screenshot_path: Option<PathBuf>§dom_snapshot_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for DebugSnapshot
impl Clone for DebugSnapshot
Source§fn clone(&self) -> DebugSnapshot
fn clone(&self) -> DebugSnapshot
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 DebugSnapshot
impl Debug for DebugSnapshot
Source§impl<'de> Deserialize<'de> for DebugSnapshot
impl<'de> Deserialize<'de> for DebugSnapshot
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 DebugSnapshot
impl RefUnwindSafe for DebugSnapshot
impl Send for DebugSnapshot
impl Sync for DebugSnapshot
impl Unpin for DebugSnapshot
impl UnsafeUnpin for DebugSnapshot
impl UnwindSafe for DebugSnapshot
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