Struct aws_sdk_iotsitewise::operation::batch_put_asset_property_value::BatchPutAssetPropertyValueOutput
source · #[non_exhaustive]pub struct BatchPutAssetPropertyValueOutput {
pub error_entries: Vec<BatchPutAssetPropertyErrorEntry>,
/* 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: Vec<BatchPutAssetPropertyErrorEntry>A list of the errors (if any) associated with the batch put request. Each error entry contains the entryId of the entry that failed.
Implementations§
source§impl BatchPutAssetPropertyValueOutput
impl BatchPutAssetPropertyValueOutput
sourcepub fn error_entries(&self) -> &[BatchPutAssetPropertyErrorEntry]
pub fn error_entries(&self) -> &[BatchPutAssetPropertyErrorEntry]
A list of the errors (if any) associated with the batch put request. Each error entry contains the entryId of the entry that failed.
source§impl BatchPutAssetPropertyValueOutput
impl BatchPutAssetPropertyValueOutput
sourcepub fn builder() -> BatchPutAssetPropertyValueOutputBuilder
pub fn builder() -> BatchPutAssetPropertyValueOutputBuilder
Creates a new builder-style object to manufacture BatchPutAssetPropertyValueOutput.
Trait Implementations§
source§impl Clone for BatchPutAssetPropertyValueOutput
impl Clone for BatchPutAssetPropertyValueOutput
source§fn clone(&self) -> BatchPutAssetPropertyValueOutput
fn clone(&self) -> BatchPutAssetPropertyValueOutput
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 BatchPutAssetPropertyValueOutput
impl PartialEq for BatchPutAssetPropertyValueOutput
source§fn eq(&self, other: &BatchPutAssetPropertyValueOutput) -> bool
fn eq(&self, other: &BatchPutAssetPropertyValueOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for BatchPutAssetPropertyValueOutput
impl RequestId for BatchPutAssetPropertyValueOutput
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 BatchPutAssetPropertyValueOutput
Auto Trait Implementations§
impl Freeze for BatchPutAssetPropertyValueOutput
impl RefUnwindSafe for BatchPutAssetPropertyValueOutput
impl Send for BatchPutAssetPropertyValueOutput
impl Sync for BatchPutAssetPropertyValueOutput
impl Unpin for BatchPutAssetPropertyValueOutput
impl UnwindSafe for BatchPutAssetPropertyValueOutput
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>
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 moreCreates a shared type from an unshared type.