#[non_exhaustive]pub struct GetUtilizationReportRequest {
pub name: String,
pub view: UtilizationReportView,
/* private fields */
}Expand description
Request message for ‘GetUtilizationReport’ request.
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.name: StringRequired. The Utilization Report name.
view: UtilizationReportViewOptional. The level of details of the report. Defaults to FULL
Implementations§
Trait Implementations§
Source§impl Clone for GetUtilizationReportRequest
impl Clone for GetUtilizationReportRequest
Source§fn clone(&self) -> GetUtilizationReportRequest
fn clone(&self) -> GetUtilizationReportRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetUtilizationReportRequest
impl Debug for GetUtilizationReportRequest
Source§impl Default for GetUtilizationReportRequest
impl Default for GetUtilizationReportRequest
Source§fn default() -> GetUtilizationReportRequest
fn default() -> GetUtilizationReportRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetUtilizationReportRequest
impl PartialEq for GetUtilizationReportRequest
Source§fn eq(&self, other: &GetUtilizationReportRequest) -> bool
fn eq(&self, other: &GetUtilizationReportRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetUtilizationReportRequest
Auto Trait Implementations§
impl Freeze for GetUtilizationReportRequest
impl RefUnwindSafe for GetUtilizationReportRequest
impl Send for GetUtilizationReportRequest
impl Sync for GetUtilizationReportRequest
impl Unpin for GetUtilizationReportRequest
impl UnsafeUnpin for GetUtilizationReportRequest
impl UnwindSafe for GetUtilizationReportRequest
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