#[non_exhaustive]pub struct BatchDeleteDelegationByAssessmentError {
pub delegation_id: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
An error entity for the BatchDeleteDelegationByAssessment API. This is used to provide more meaningful errors than a simple string message.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.delegation_id: Option<String>The identifier for the delegation.
error_code: Option<String>The error code that the BatchDeleteDelegationByAssessment API returned.
error_message: Option<String>The error message that the BatchDeleteDelegationByAssessment API returned.
Implementations§
source§impl BatchDeleteDelegationByAssessmentError
impl BatchDeleteDelegationByAssessmentError
sourcepub fn delegation_id(&self) -> Option<&str>
pub fn delegation_id(&self) -> Option<&str>
The identifier for the delegation.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The error code that the BatchDeleteDelegationByAssessment API returned.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message that the BatchDeleteDelegationByAssessment API returned.
source§impl BatchDeleteDelegationByAssessmentError
impl BatchDeleteDelegationByAssessmentError
sourcepub fn builder() -> BatchDeleteDelegationByAssessmentErrorBuilder
pub fn builder() -> BatchDeleteDelegationByAssessmentErrorBuilder
Creates a new builder-style object to manufacture BatchDeleteDelegationByAssessmentError.
Trait Implementations§
source§impl Clone for BatchDeleteDelegationByAssessmentError
impl Clone for BatchDeleteDelegationByAssessmentError
source§fn clone(&self) -> BatchDeleteDelegationByAssessmentError
fn clone(&self) -> BatchDeleteDelegationByAssessmentError
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 PartialEq for BatchDeleteDelegationByAssessmentError
impl PartialEq for BatchDeleteDelegationByAssessmentError
source§fn eq(&self, other: &BatchDeleteDelegationByAssessmentError) -> bool
fn eq(&self, other: &BatchDeleteDelegationByAssessmentError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchDeleteDelegationByAssessmentError
Auto Trait Implementations§
impl RefUnwindSafe for BatchDeleteDelegationByAssessmentError
impl Send for BatchDeleteDelegationByAssessmentError
impl Sync for BatchDeleteDelegationByAssessmentError
impl Unpin for BatchDeleteDelegationByAssessmentError
impl UnwindSafe for BatchDeleteDelegationByAssessmentError
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> 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>
Creates a shared type from an unshared type.