pub struct AlertmanagerGlobal {
pub smtp_smarthost: Option<String>,
pub smtp_from: Option<String>,
pub smtp_auth_username: Option<String>,
pub smtp_require_tls: Option<bool>,
pub slack_api_url: Option<String>,
pub pagerduty_url: Option<String>,
pub resolve_timeout: Option<String>,
}Fields§
§smtp_smarthost: Option<String>§smtp_from: Option<String>§smtp_auth_username: Option<String>§smtp_require_tls: Option<bool>§slack_api_url: Option<String>§pagerduty_url: Option<String>§resolve_timeout: Option<String>Trait Implementations§
Source§impl Clone for AlertmanagerGlobal
impl Clone for AlertmanagerGlobal
Source§fn clone(&self) -> AlertmanagerGlobal
fn clone(&self) -> AlertmanagerGlobal
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 AlertmanagerGlobal
impl Debug for AlertmanagerGlobal
Source§impl<'de> Deserialize<'de> for AlertmanagerGlobal
impl<'de> Deserialize<'de> for AlertmanagerGlobal
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 AlertmanagerGlobal
impl RefUnwindSafe for AlertmanagerGlobal
impl Send for AlertmanagerGlobal
impl Sync for AlertmanagerGlobal
impl Unpin for AlertmanagerGlobal
impl UnsafeUnpin for AlertmanagerGlobal
impl UnwindSafe for AlertmanagerGlobal
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