#[non_exhaustive]pub struct MonitoringDestination {
pub monitored_resource: String,
pub metrics: Vec<String>,
/* private fields */
}
Expand description
Configuration of a specific monitoring destination (the producer project or the consumer project).
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.monitored_resource: String
The monitored resource type. The type must be defined in Service.monitored_resources section.
metrics: Vec<String>
Types of the metrics to report to this monitoring destination. Each type must be defined in Service.metrics section.
Implementations§
Source§impl MonitoringDestination
impl MonitoringDestination
pub fn new() -> Self
Sourcepub fn set_monitored_resource<T: Into<String>>(self, v: T) -> Self
pub fn set_monitored_resource<T: Into<String>>(self, v: T) -> Self
Sets the value of monitored_resource.
Sourcepub fn set_metrics<T, V>(self, v: T) -> Self
pub fn set_metrics<T, V>(self, v: T) -> Self
Sets the value of metrics.
Trait Implementations§
Source§impl Clone for MonitoringDestination
impl Clone for MonitoringDestination
Source§fn clone(&self) -> MonitoringDestination
fn clone(&self) -> MonitoringDestination
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 Debug for MonitoringDestination
impl Debug for MonitoringDestination
Source§impl Default for MonitoringDestination
impl Default for MonitoringDestination
Source§fn default() -> MonitoringDestination
fn default() -> MonitoringDestination
Returns the “default value” for a type. Read more
Source§impl Message for MonitoringDestination
impl Message for MonitoringDestination
Source§impl PartialEq for MonitoringDestination
impl PartialEq for MonitoringDestination
impl StructuralPartialEq for MonitoringDestination
Auto Trait Implementations§
impl Freeze for MonitoringDestination
impl RefUnwindSafe for MonitoringDestination
impl Send for MonitoringDestination
impl Sync for MonitoringDestination
impl Unpin for MonitoringDestination
impl UnwindSafe for MonitoringDestination
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