pub struct RichResultsIssue {
pub issue_message: Option<String>,
pub severity: Option<String>,
}Expand description
Severity and status of a single issue affecting a single rich result instance on a page.
This type is not used in any activity, and only used as part of another schema.
Fields§
§issue_message: Option<String>Rich Results issue type.
severity: Option<String>Severity of this issue: WARNING, or ERROR. Items with an issue of status ERROR cannot appear with rich result features in Google Search results.
Trait Implementations§
Source§impl Clone for RichResultsIssue
impl Clone for RichResultsIssue
Source§fn clone(&self) -> RichResultsIssue
fn clone(&self) -> RichResultsIssue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RichResultsIssue
impl Debug for RichResultsIssue
Source§impl Default for RichResultsIssue
impl Default for RichResultsIssue
Source§fn default() -> RichResultsIssue
fn default() -> RichResultsIssue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RichResultsIssue
impl<'de> Deserialize<'de> for RichResultsIssue
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
impl Part for RichResultsIssue
Auto Trait Implementations§
impl Freeze for RichResultsIssue
impl RefUnwindSafe for RichResultsIssue
impl Send for RichResultsIssue
impl Sync for RichResultsIssue
impl Unpin for RichResultsIssue
impl UnsafeUnpin for RichResultsIssue
impl UnwindSafe for RichResultsIssue
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