pub struct AttributionReportingIssueDetailsBuilder { /* private fields */ }
Implementations§
Source§impl AttributionReportingIssueDetailsBuilder
impl AttributionReportingIssueDetailsBuilder
pub fn violation_type( self, violation_type: impl Into<AttributionReportingIssueType>, ) -> AttributionReportingIssueDetailsBuilder
pub fn request( self, request: impl Into<AffectedRequest>, ) -> AttributionReportingIssueDetailsBuilder
pub fn violating_node_id( self, violating_node_id: impl Into<BackendNodeId>, ) -> AttributionReportingIssueDetailsBuilder
pub fn invalid_parameter( self, invalid_parameter: impl Into<String>, ) -> AttributionReportingIssueDetailsBuilder
pub fn build(self) -> Result<AttributionReportingIssueDetails, String>
Trait Implementations§
Source§impl Clone for AttributionReportingIssueDetailsBuilder
impl Clone for AttributionReportingIssueDetailsBuilder
Source§fn clone(&self) -> AttributionReportingIssueDetailsBuilder
fn clone(&self) -> AttributionReportingIssueDetailsBuilder
Returns a copy 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 Default for AttributionReportingIssueDetailsBuilder
impl Default for AttributionReportingIssueDetailsBuilder
Source§fn default() -> AttributionReportingIssueDetailsBuilder
fn default() -> AttributionReportingIssueDetailsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AttributionReportingIssueDetailsBuilder
impl RefUnwindSafe for AttributionReportingIssueDetailsBuilder
impl Send for AttributionReportingIssueDetailsBuilder
impl Sync for AttributionReportingIssueDetailsBuilder
impl Unpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more