pub struct GetAdScriptAncestryResult {
pub ad_script_ancestry: Option<AdScriptAncestry>,
}Fields§
§ad_script_ancestry: Option<AdScriptAncestry>The ancestry chain of ad script identifiers leading to this frame’s creation, along with the root script’s filterlist rule. The ancestry chain is ordered from the most immediate script (in the frame creation stack) to more distant ancestors (that created the immediately preceding script). Only sent if frame is labelled as an ad and ids are available.
Trait Implementations§
Source§impl Clone for GetAdScriptAncestryResult
impl Clone for GetAdScriptAncestryResult
Source§fn clone(&self) -> GetAdScriptAncestryResult
fn clone(&self) -> GetAdScriptAncestryResult
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 GetAdScriptAncestryResult
impl Debug for GetAdScriptAncestryResult
Source§impl Default for GetAdScriptAncestryResult
impl Default for GetAdScriptAncestryResult
Source§fn default() -> GetAdScriptAncestryResult
fn default() -> GetAdScriptAncestryResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAdScriptAncestryResult
impl<'de> Deserialize<'de> for GetAdScriptAncestryResult
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 TryFrom<Value> for GetAdScriptAncestryResult
impl TryFrom<Value> for GetAdScriptAncestryResult
impl StructuralPartialEq for GetAdScriptAncestryResult
Auto Trait Implementations§
impl Freeze for GetAdScriptAncestryResult
impl RefUnwindSafe for GetAdScriptAncestryResult
impl Send for GetAdScriptAncestryResult
impl Sync for GetAdScriptAncestryResult
impl Unpin for GetAdScriptAncestryResult
impl UnsafeUnpin for GetAdScriptAncestryResult
impl UnwindSafe for GetAdScriptAncestryResult
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