pub struct DomSnapshot {
pub html: String,
pub url: String,
pub title: String,
pub timestamp: String,
}Expand description
Response from a DOM query.
Fields§
§html: StringThe full HTML content
url: StringThe page URL
title: StringThe page title
timestamp: StringTimestamp of the snapshot
Trait Implementations§
Source§impl Debug for DomSnapshot
impl Debug for DomSnapshot
Auto Trait Implementations§
impl Freeze for DomSnapshot
impl RefUnwindSafe for DomSnapshot
impl Send for DomSnapshot
impl Sync for DomSnapshot
impl Unpin for DomSnapshot
impl UnsafeUnpin for DomSnapshot
impl UnwindSafe for DomSnapshot
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