pub struct AlertmanagerRoute {
pub receiver: Option<String>,
pub group_by: Vec<String>,
pub group_wait: Option<String>,
pub group_interval: Option<String>,
pub repeat_interval: Option<String>,
pub match_labels: Option<HashMap<String, String>>,
pub match_re: Option<HashMap<String, String>>,
pub matchers: Vec<String>,
pub routes: Vec<AlertmanagerRoute>,
pub continue_matching: Option<bool>,
pub mute_time_intervals: Vec<String>,
}Fields§
§receiver: Option<String>§group_by: Vec<String>§group_wait: Option<String>§group_interval: Option<String>§repeat_interval: Option<String>§match_labels: Option<HashMap<String, String>>§match_re: Option<HashMap<String, String>>§matchers: Vec<String>§routes: Vec<AlertmanagerRoute>§continue_matching: Option<bool>§mute_time_intervals: Vec<String>Trait Implementations§
Source§impl Clone for AlertmanagerRoute
impl Clone for AlertmanagerRoute
Source§fn clone(&self) -> AlertmanagerRoute
fn clone(&self) -> AlertmanagerRoute
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 AlertmanagerRoute
impl Debug for AlertmanagerRoute
Source§impl<'de> Deserialize<'de> for AlertmanagerRoute
impl<'de> Deserialize<'de> for AlertmanagerRoute
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
Auto Trait Implementations§
impl Freeze for AlertmanagerRoute
impl RefUnwindSafe for AlertmanagerRoute
impl Send for AlertmanagerRoute
impl Sync for AlertmanagerRoute
impl Unpin for AlertmanagerRoute
impl UnsafeUnpin for AlertmanagerRoute
impl UnwindSafe for AlertmanagerRoute
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