Struct aws_sdk_databasemigration::operation::batch_start_recommendations::BatchStartRecommendationsOutput
source · #[non_exhaustive]pub struct BatchStartRecommendationsOutput {
pub error_entries: Option<Vec<BatchStartRecommendationsErrorEntry>>,
/* private fields */
}
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.error_entries: Option<Vec<BatchStartRecommendationsErrorEntry>>
A list with error details about the analysis of each source database.
Implementations§
source§impl BatchStartRecommendationsOutput
impl BatchStartRecommendationsOutput
sourcepub fn error_entries(&self) -> &[BatchStartRecommendationsErrorEntry]
pub fn error_entries(&self) -> &[BatchStartRecommendationsErrorEntry]
A list with error details about the analysis of each source database.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .error_entries.is_none()
.
source§impl BatchStartRecommendationsOutput
impl BatchStartRecommendationsOutput
sourcepub fn builder() -> BatchStartRecommendationsOutputBuilder
pub fn builder() -> BatchStartRecommendationsOutputBuilder
Creates a new builder-style object to manufacture BatchStartRecommendationsOutput
.
Trait Implementations§
source§impl Clone for BatchStartRecommendationsOutput
impl Clone for BatchStartRecommendationsOutput
source§fn clone(&self) -> BatchStartRecommendationsOutput
fn clone(&self) -> BatchStartRecommendationsOutput
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 BatchStartRecommendationsOutput
impl PartialEq for BatchStartRecommendationsOutput
source§fn eq(&self, other: &BatchStartRecommendationsOutput) -> bool
fn eq(&self, other: &BatchStartRecommendationsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchStartRecommendationsOutput
impl RequestId for BatchStartRecommendationsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for BatchStartRecommendationsOutput
Auto Trait Implementations§
impl RefUnwindSafe for BatchStartRecommendationsOutput
impl Send for BatchStartRecommendationsOutput
impl Sync for BatchStartRecommendationsOutput
impl Unpin for BatchStartRecommendationsOutput
impl UnwindSafe for BatchStartRecommendationsOutput
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.