pub enum KnownIntegration {
Github,
Slack,
Notion,
Linear,
Google,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for KnownIntegration
impl Clone for KnownIntegration
Source§fn clone(&self) -> KnownIntegration
fn clone(&self) -> KnownIntegration
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 KnownIntegration
impl Debug for KnownIntegration
Source§impl From<KnownIntegration> for String
impl From<KnownIntegration> for String
Source§fn from(value: KnownIntegration) -> Self
fn from(value: KnownIntegration) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KnownIntegration
impl RefUnwindSafe for KnownIntegration
impl Send for KnownIntegration
impl Sync for KnownIntegration
impl Unpin for KnownIntegration
impl UnsafeUnpin for KnownIntegration
impl UnwindSafe for KnownIntegration
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