pub struct SlackDMConfig {
pub enabled: bool,
pub policy: String,
pub allow_from: Vec<String>,
}Expand description
Slack DM configuration
Fields§
§enabled: bool§policy: String§allow_from: Vec<String>Trait Implementations§
Source§impl Clone for SlackDMConfig
impl Clone for SlackDMConfig
Source§fn clone(&self) -> SlackDMConfig
fn clone(&self) -> SlackDMConfig
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 SlackDMConfig
impl Debug for SlackDMConfig
Source§impl Default for SlackDMConfig
impl Default for SlackDMConfig
Source§impl<'de> Deserialize<'de> for SlackDMConfig
impl<'de> Deserialize<'de> for SlackDMConfig
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 SlackDMConfig
impl RefUnwindSafe for SlackDMConfig
impl Send for SlackDMConfig
impl Sync for SlackDMConfig
impl Unpin for SlackDMConfig
impl UnsafeUnpin for SlackDMConfig
impl UnwindSafe for SlackDMConfig
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