#[non_exhaustive]pub struct BatchGetAssetPropertyValueErrorInfo {
pub error_code: BatchGetAssetPropertyValueErrorCode,
pub error_timestamp: DateTime,
}Expand description
The error information, such as the error code and the timestamp.
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_code: BatchGetAssetPropertyValueErrorCodeThe error code.
error_timestamp: DateTimeThe date the error occurred, in Unix epoch time.
Implementations§
source§impl BatchGetAssetPropertyValueErrorInfo
impl BatchGetAssetPropertyValueErrorInfo
sourcepub fn error_code(&self) -> &BatchGetAssetPropertyValueErrorCode
pub fn error_code(&self) -> &BatchGetAssetPropertyValueErrorCode
The error code.
sourcepub fn error_timestamp(&self) -> &DateTime
pub fn error_timestamp(&self) -> &DateTime
The date the error occurred, in Unix epoch time.
source§impl BatchGetAssetPropertyValueErrorInfo
impl BatchGetAssetPropertyValueErrorInfo
sourcepub fn builder() -> BatchGetAssetPropertyValueErrorInfoBuilder
pub fn builder() -> BatchGetAssetPropertyValueErrorInfoBuilder
Creates a new builder-style object to manufacture BatchGetAssetPropertyValueErrorInfo.
Trait Implementations§
source§impl Clone for BatchGetAssetPropertyValueErrorInfo
impl Clone for BatchGetAssetPropertyValueErrorInfo
source§fn clone(&self) -> BatchGetAssetPropertyValueErrorInfo
fn clone(&self) -> BatchGetAssetPropertyValueErrorInfo
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 BatchGetAssetPropertyValueErrorInfo
impl PartialEq for BatchGetAssetPropertyValueErrorInfo
source§fn eq(&self, other: &BatchGetAssetPropertyValueErrorInfo) -> bool
fn eq(&self, other: &BatchGetAssetPropertyValueErrorInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetAssetPropertyValueErrorInfo
Auto Trait Implementations§
impl RefUnwindSafe for BatchGetAssetPropertyValueErrorInfo
impl Send for BatchGetAssetPropertyValueErrorInfo
impl Sync for BatchGetAssetPropertyValueErrorInfo
impl Unpin for BatchGetAssetPropertyValueErrorInfo
impl UnwindSafe for BatchGetAssetPropertyValueErrorInfo
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.