pub struct GetAnnotatedPageContentReturns {
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 (Encoded as a base64 string when passed over JSON)
Trait Implementations§
Source§impl Clone for GetAnnotatedPageContentReturns
impl Clone for GetAnnotatedPageContentReturns
Source§fn clone(&self) -> GetAnnotatedPageContentReturns
fn clone(&self) -> GetAnnotatedPageContentReturns
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 Default for GetAnnotatedPageContentReturns
impl Default for GetAnnotatedPageContentReturns
Source§fn default() -> GetAnnotatedPageContentReturns
fn default() -> GetAnnotatedPageContentReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAnnotatedPageContentReturns
impl<'de> Deserialize<'de> for GetAnnotatedPageContentReturns
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 GetAnnotatedPageContentReturns
impl RefUnwindSafe for GetAnnotatedPageContentReturns
impl Send for GetAnnotatedPageContentReturns
impl Sync for GetAnnotatedPageContentReturns
impl Unpin for GetAnnotatedPageContentReturns
impl UnsafeUnpin for GetAnnotatedPageContentReturns
impl UnwindSafe for GetAnnotatedPageContentReturns
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