pub struct SupportConfig {
pub escalation_contacts: Vec<String>,
pub hours: Option<String>,
pub sla: Option<String>,
}Expand description
Support and escalation configuration.
Fields§
§escalation_contacts: Vec<String>Escalation contact emails or phone numbers.
hours: Option<String>Business hours (e.g. “Mon-Fri 9:00-17:00 EAT”).
sla: Option<String>SLA response time target (e.g. “4h”, “24h”).
Trait Implementations§
Source§impl Clone for SupportConfig
impl Clone for SupportConfig
Source§fn clone(&self) -> SupportConfig
fn clone(&self) -> SupportConfig
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 SupportConfig
impl Debug for SupportConfig
Source§impl<'de> Deserialize<'de> for SupportConfig
impl<'de> Deserialize<'de> for SupportConfig
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
Source§impl PartialEq for SupportConfig
impl PartialEq for SupportConfig
Source§fn eq(&self, other: &SupportConfig) -> bool
fn eq(&self, other: &SupportConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SupportConfig
impl Serialize for SupportConfig
impl StructuralPartialEq for SupportConfig
Auto Trait Implementations§
impl Freeze for SupportConfig
impl RefUnwindSafe for SupportConfig
impl Send for SupportConfig
impl Sync for SupportConfig
impl Unpin for SupportConfig
impl UnsafeUnpin for SupportConfig
impl UnwindSafe for SupportConfig
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