pub struct LastReportGenerationExecutionError {
pub error_code: Option<String>,
pub error_message: Option<String>,
}
Expand description
Describes the error that is returned when a usage report can't be generated.
Fields§
§error_code: Option<String>
The error code for the error that is returned when a usage report can't be generated.
error_message: Option<String>
The error message for the error that is returned when a usage report can't be generated.
Trait Implementations§
Source§impl Clone for LastReportGenerationExecutionError
impl Clone for LastReportGenerationExecutionError
Source§fn clone(&self) -> LastReportGenerationExecutionError
fn clone(&self) -> LastReportGenerationExecutionError
Returns a duplicate 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 Default for LastReportGenerationExecutionError
impl Default for LastReportGenerationExecutionError
Source§fn default() -> LastReportGenerationExecutionError
fn default() -> LastReportGenerationExecutionError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LastReportGenerationExecutionError
impl<'de> Deserialize<'de> for LastReportGenerationExecutionError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LastReportGenerationExecutionError
impl PartialEq for LastReportGenerationExecutionError
Source§fn eq(&self, other: &LastReportGenerationExecutionError) -> bool
fn eq(&self, other: &LastReportGenerationExecutionError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LastReportGenerationExecutionError
Auto Trait Implementations§
impl Freeze for LastReportGenerationExecutionError
impl RefUnwindSafe for LastReportGenerationExecutionError
impl Send for LastReportGenerationExecutionError
impl Sync for LastReportGenerationExecutionError
impl Unpin for LastReportGenerationExecutionError
impl UnwindSafe for LastReportGenerationExecutionError
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