#[non_exhaustive]pub struct GetNativeDashboardRequest {
pub name: String,
pub view: NativeDashboardView,
/* private fields */
}Expand description
Request message to get a dashboard.
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 dashboard name to fetch. Format: projects/{project}/locations/{location}/instances/{instance}/nativeDashboards/{dashboard}
view: NativeDashboardViewOptional. View indicates the scope of fields to populate when returning the dashboard resource. If unspecified, defaults to the basic view.
Implementations§
Trait Implementations§
Source§impl Clone for GetNativeDashboardRequest
impl Clone for GetNativeDashboardRequest
Source§fn clone(&self) -> GetNativeDashboardRequest
fn clone(&self) -> GetNativeDashboardRequest
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 GetNativeDashboardRequest
impl Debug for GetNativeDashboardRequest
Source§impl Default for GetNativeDashboardRequest
impl Default for GetNativeDashboardRequest
Source§fn default() -> GetNativeDashboardRequest
fn default() -> GetNativeDashboardRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetNativeDashboardRequest
impl Message for GetNativeDashboardRequest
Source§impl PartialEq for GetNativeDashboardRequest
impl PartialEq for GetNativeDashboardRequest
Source§fn eq(&self, other: &GetNativeDashboardRequest) -> bool
fn eq(&self, other: &GetNativeDashboardRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetNativeDashboardRequest
Auto Trait Implementations§
impl Freeze for GetNativeDashboardRequest
impl RefUnwindSafe for GetNativeDashboardRequest
impl Send for GetNativeDashboardRequest
impl Sync for GetNativeDashboardRequest
impl Unpin for GetNativeDashboardRequest
impl UnsafeUnpin for GetNativeDashboardRequest
impl UnwindSafe for GetNativeDashboardRequest
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