pub struct CookieIssueInsight {
pub type: InsightType,
pub table_entry_url: Option<String>,
}
Expand description
Information about the suggested solution to a cookie issue. CookieIssueInsight
Fields§
§type: InsightType
§table_entry_url: Option<String>
Link to table entry in third-party cookie migration readiness list.
Implementations§
Source§impl CookieIssueInsight
impl CookieIssueInsight
pub fn new(type: impl Into<InsightType>) -> CookieIssueInsight
Source§impl CookieIssueInsight
impl CookieIssueInsight
pub fn builder() -> CookieIssueInsightBuilder
Source§impl CookieIssueInsight
impl CookieIssueInsight
pub const IDENTIFIER: &'static str = "Audits.CookieIssueInsight"
Trait Implementations§
Source§impl Clone for CookieIssueInsight
impl Clone for CookieIssueInsight
Source§fn clone(&self) -> CookieIssueInsight
fn clone(&self) -> CookieIssueInsight
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 CookieIssueInsight
impl Debug for CookieIssueInsight
Source§impl<'de> Deserialize<'de> for CookieIssueInsight
impl<'de> Deserialize<'de> for CookieIssueInsight
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CookieIssueInsight, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CookieIssueInsight, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CookieIssueInsight
impl PartialEq for CookieIssueInsight
Source§impl Serialize for CookieIssueInsight
impl Serialize for CookieIssueInsight
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CookieIssueInsight
Auto Trait Implementations§
impl Freeze for CookieIssueInsight
impl RefUnwindSafe for CookieIssueInsight
impl Send for CookieIssueInsight
impl Sync for CookieIssueInsight
impl Unpin for CookieIssueInsight
impl UnwindSafe for CookieIssueInsight
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