pub struct GetAdScriptAncestryReturnObjectBuilder { /* private fields */ }Expand description
Builder for GetAdScriptAncestryReturnObject.
Implementations§
Source§impl GetAdScriptAncestryReturnObjectBuilder
impl GetAdScriptAncestryReturnObjectBuilder
Sourcepub fn ad_script_ancestry(
&mut self,
value: Option<AdScriptAncestry>,
) -> &mut Self
pub fn ad_script_ancestry( &mut self, value: Option<AdScriptAncestry>, ) -> &mut Self
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.
Sourcepub fn build(
&self,
) -> Result<GetAdScriptAncestryReturnObject, GetAdScriptAncestryReturnObjectBuilderError>
pub fn build( &self, ) -> Result<GetAdScriptAncestryReturnObject, GetAdScriptAncestryReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for GetAdScriptAncestryReturnObjectBuilder
impl Clone for GetAdScriptAncestryReturnObjectBuilder
Source§fn clone(&self) -> GetAdScriptAncestryReturnObjectBuilder
fn clone(&self) -> GetAdScriptAncestryReturnObjectBuilder
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 moreAuto Trait Implementations§
impl Freeze for GetAdScriptAncestryReturnObjectBuilder
impl RefUnwindSafe for GetAdScriptAncestryReturnObjectBuilder
impl Send for GetAdScriptAncestryReturnObjectBuilder
impl Sync for GetAdScriptAncestryReturnObjectBuilder
impl Unpin for GetAdScriptAncestryReturnObjectBuilder
impl UnsafeUnpin for GetAdScriptAncestryReturnObjectBuilder
impl UnwindSafe for GetAdScriptAncestryReturnObjectBuilder
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