pub enum SlackChannelType {
DirectMessage,
MultiPersonDirectMessage,
Private,
PrivateGroup,
Public,
Unknown,
}Variants§
DirectMessage
MultiPersonDirectMessage
Private
PrivateGroup
Public
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for SlackChannelType
impl Clone for SlackChannelType
Source§fn clone(&self) -> SlackChannelType
fn clone(&self) -> SlackChannelType
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 SlackChannelType
impl Debug for SlackChannelType
Source§impl<'de> Deserialize<'de> for SlackChannelType
impl<'de> Deserialize<'de> for SlackChannelType
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 SlackChannelType
impl PartialEq for SlackChannelType
Source§impl Serialize for SlackChannelType
impl Serialize for SlackChannelType
impl Eq for SlackChannelType
impl StructuralPartialEq for SlackChannelType
Auto Trait Implementations§
impl Freeze for SlackChannelType
impl RefUnwindSafe for SlackChannelType
impl Send for SlackChannelType
impl Sync for SlackChannelType
impl Unpin for SlackChannelType
impl UnwindSafe for SlackChannelType
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