pub struct AttributionReportingIssueDetailsBuilder { /* private fields */ }Expand description
Builder for AttributionReportingIssueDetails.
Implementations§
Source§impl AttributionReportingIssueDetailsBuilder
impl AttributionReportingIssueDetailsBuilder
pub fn violation_type<VALUE: Into<AttributionReportingIssueType>>( &mut self, value: VALUE, ) -> &mut Self
pub fn request<VALUE: Into<AffectedRequest>>( &mut self, value: VALUE, ) -> &mut Self
pub fn violating_node_id<VALUE: Into<BackendNodeId>>( &mut self, value: VALUE, ) -> &mut Self
pub fn invalid_parameter<VALUE: Into<String>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<AttributionReportingIssueDetails, AttributionReportingIssueDetailsBuilderError>
pub fn build( &self, ) -> Result<AttributionReportingIssueDetails, AttributionReportingIssueDetailsBuilderError>
Builds a new AttributionReportingIssueDetails.
§Errors
If a required field has not been initialized.
Trait Implementations§
Source§impl Clone for AttributionReportingIssueDetailsBuilder
impl Clone for AttributionReportingIssueDetailsBuilder
Source§fn clone(&self) -> AttributionReportingIssueDetailsBuilder
fn clone(&self) -> AttributionReportingIssueDetailsBuilder
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 AttributionReportingIssueDetailsBuilder
impl RefUnwindSafe for AttributionReportingIssueDetailsBuilder
impl Send for AttributionReportingIssueDetailsBuilder
impl Sync for AttributionReportingIssueDetailsBuilder
impl Unpin for AttributionReportingIssueDetailsBuilder
impl UnsafeUnpin for AttributionReportingIssueDetailsBuilder
impl UnwindSafe for AttributionReportingIssueDetailsBuilder
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