pub struct GetAnnotatedPageContentReturnObject {
pub content: String,
}Expand description
Get the annotated page content for the main frame. This is an experimental command that is subject to change.
Fields§
§content: StringThe annotated page content as a base64 encoded protobuf.
The format is defined by the AnnotatedPageContent message in
components/optimization_guide/proto/features/common_quality_data.proto
Trait Implementations§
Source§impl Clone for GetAnnotatedPageContentReturnObject
impl Clone for GetAnnotatedPageContentReturnObject
Source§fn clone(&self) -> GetAnnotatedPageContentReturnObject
fn clone(&self) -> GetAnnotatedPageContentReturnObject
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<'de> Deserialize<'de> for GetAnnotatedPageContentReturnObject
impl<'de> Deserialize<'de> for GetAnnotatedPageContentReturnObject
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
Source§impl PartialEq for GetAnnotatedPageContentReturnObject
impl PartialEq for GetAnnotatedPageContentReturnObject
Source§fn eq(&self, other: &GetAnnotatedPageContentReturnObject) -> bool
fn eq(&self, other: &GetAnnotatedPageContentReturnObject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetAnnotatedPageContentReturnObject
Auto Trait Implementations§
impl Freeze for GetAnnotatedPageContentReturnObject
impl RefUnwindSafe for GetAnnotatedPageContentReturnObject
impl Send for GetAnnotatedPageContentReturnObject
impl Sync for GetAnnotatedPageContentReturnObject
impl Unpin for GetAnnotatedPageContentReturnObject
impl UnsafeUnpin for GetAnnotatedPageContentReturnObject
impl UnwindSafe for GetAnnotatedPageContentReturnObject
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