pub struct CaptureSnapshotResult {
pub documents: Vec<DocumentSnapshot>,
pub strings: Vec<String>,
}Expand description
Result of DOMSnapshot.captureSnapshot.
Fields§
§documents: Vec<DocumentSnapshot>The document snapshots for all documents in the page.
strings: Vec<String>Shared strings.
Trait Implementations§
Source§impl Clone for CaptureSnapshotResult
impl Clone for CaptureSnapshotResult
Source§fn clone(&self) -> CaptureSnapshotResult
fn clone(&self) -> CaptureSnapshotResult
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 CaptureSnapshotResult
impl Debug for CaptureSnapshotResult
Source§impl<'de> Deserialize<'de> for CaptureSnapshotResult
impl<'de> Deserialize<'de> for CaptureSnapshotResult
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 CaptureSnapshotResult
impl RefUnwindSafe for CaptureSnapshotResult
impl Send for CaptureSnapshotResult
impl Sync for CaptureSnapshotResult
impl Unpin for CaptureSnapshotResult
impl UnwindSafe for CaptureSnapshotResult
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