#[non_exhaustive]pub struct BatchUpdateRecommendationStatusFailedEntry {
pub entry_id: String,
pub error_message: String,
}Expand description
List of operational recommendations that did not get included or excluded.
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.entry_id: StringAn identifier of an entry in this batch that is used to communicate the result.
The entryIds of a batch request need to be unique within a request.
error_message: StringIndicates the error that occurred while excluding an operational recommendation.
Implementations§
source§impl BatchUpdateRecommendationStatusFailedEntry
impl BatchUpdateRecommendationStatusFailedEntry
sourcepub fn entry_id(&self) -> &str
pub fn entry_id(&self) -> &str
An identifier of an entry in this batch that is used to communicate the result.
The entryIds of a batch request need to be unique within a request.
sourcepub fn error_message(&self) -> &str
pub fn error_message(&self) -> &str
Indicates the error that occurred while excluding an operational recommendation.
source§impl BatchUpdateRecommendationStatusFailedEntry
impl BatchUpdateRecommendationStatusFailedEntry
sourcepub fn builder() -> BatchUpdateRecommendationStatusFailedEntryBuilder
pub fn builder() -> BatchUpdateRecommendationStatusFailedEntryBuilder
Creates a new builder-style object to manufacture BatchUpdateRecommendationStatusFailedEntry.
Trait Implementations§
source§impl Clone for BatchUpdateRecommendationStatusFailedEntry
impl Clone for BatchUpdateRecommendationStatusFailedEntry
source§fn clone(&self) -> BatchUpdateRecommendationStatusFailedEntry
fn clone(&self) -> BatchUpdateRecommendationStatusFailedEntry
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 BatchUpdateRecommendationStatusFailedEntry
impl PartialEq for BatchUpdateRecommendationStatusFailedEntry
source§fn eq(&self, other: &BatchUpdateRecommendationStatusFailedEntry) -> bool
fn eq(&self, other: &BatchUpdateRecommendationStatusFailedEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchUpdateRecommendationStatusFailedEntry
Auto Trait Implementations§
impl RefUnwindSafe for BatchUpdateRecommendationStatusFailedEntry
impl Send for BatchUpdateRecommendationStatusFailedEntry
impl Sync for BatchUpdateRecommendationStatusFailedEntry
impl Unpin for BatchUpdateRecommendationStatusFailedEntry
impl UnwindSafe for BatchUpdateRecommendationStatusFailedEntry
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.