#[non_exhaustive]pub struct InlineDestination {
pub dashboards: Vec<NativeDashboardWithChartsAndQueries>,
/* private fields */
}Expand description
InlineDestination for exporting 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.dashboards: Vec<NativeDashboardWithChartsAndQueries>Dashboards with charts and queries.
Implementations§
Source§impl InlineDestination
impl InlineDestination
Sourcepub fn set_dashboards<T, V>(self, v: T) -> Self
pub fn set_dashboards<T, V>(self, v: T) -> Self
Sets the value of dashboards.
§Example
ⓘ
use google_cloud_chronicle_v1::model::NativeDashboardWithChartsAndQueries;
let x = InlineDestination::new()
.set_dashboards([
NativeDashboardWithChartsAndQueries::default()/* use setters */,
NativeDashboardWithChartsAndQueries::default()/* use (different) setters */,
]);Trait Implementations§
Source§impl Clone for InlineDestination
impl Clone for InlineDestination
Source§fn clone(&self) -> InlineDestination
fn clone(&self) -> InlineDestination
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 InlineDestination
impl Debug for InlineDestination
Source§impl Default for InlineDestination
impl Default for InlineDestination
Source§fn default() -> InlineDestination
fn default() -> InlineDestination
Returns the “default value” for a type. Read more
Source§impl Message for InlineDestination
impl Message for InlineDestination
Source§impl PartialEq for InlineDestination
impl PartialEq for InlineDestination
Source§fn eq(&self, other: &InlineDestination) -> bool
fn eq(&self, other: &InlineDestination) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InlineDestination
Auto Trait Implementations§
impl Freeze for InlineDestination
impl RefUnwindSafe for InlineDestination
impl Send for InlineDestination
impl Sync for InlineDestination
impl Unpin for InlineDestination
impl UnsafeUnpin for InlineDestination
impl UnwindSafe for InlineDestination
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