pub struct SubmitTestMetricReportRequestBody {
pub generated_metric_report_values: Vec<MetricValue>,
pub metric_report_name: String,
pub metric_report_values: Option<String>,
}
Expand description
This action generates a metric report.
Fields§
§generated_metric_report_values: Vec<MetricValue>
The content of the MetricReportValues in the generated metric report.
metric_report_name: String
The name of the metric report in generated metric report.
metric_report_values: Option<String>
The contents of MetricReportValues array in the generated metric report.
Trait Implementations§
Source§impl Clone for SubmitTestMetricReportRequestBody
impl Clone for SubmitTestMetricReportRequestBody
Source§fn clone(&self) -> SubmitTestMetricReportRequestBody
fn clone(&self) -> SubmitTestMetricReportRequestBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for SubmitTestMetricReportRequestBody
impl<'de> Deserialize<'de> for SubmitTestMetricReportRequestBody
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 Metadata<'static> for SubmitTestMetricReportRequestBody
impl Metadata<'static> for SubmitTestMetricReportRequestBody
Source§const JSON_SCHEMA: &'static str = "TelemetryService.v1_3_2.json"
const JSON_SCHEMA: &'static str = "TelemetryService.v1_3_2.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for SubmitTestMetricReportRequestBody
impl RefUnwindSafe for SubmitTestMetricReportRequestBody
impl Send for SubmitTestMetricReportRequestBody
impl Sync for SubmitTestMetricReportRequestBody
impl Unpin for SubmitTestMetricReportRequestBody
impl UnwindSafe for SubmitTestMetricReportRequestBody
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