#[non_exhaustive]pub enum IntegrationId {
GitHub,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GitHub
Trait Implementations§
source§impl Clone for IntegrationId
impl Clone for IntegrationId
source§fn clone(&self) -> IntegrationId
fn clone(&self) -> IntegrationId
Returns a copy 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 IntegrationId
impl Debug for IntegrationId
source§impl<'de> Deserialize<'de> for IntegrationId
impl<'de> Deserialize<'de> for IntegrationId
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 Display for IntegrationId
impl Display for IntegrationId
source§impl IntoEnumIterator for IntegrationId
impl IntoEnumIterator for IntegrationId
type Iterator = IntegrationIdIter
fn iter() -> IntegrationIdIter ⓘ
source§impl PartialEq for IntegrationId
impl PartialEq for IntegrationId
source§fn eq(&self, other: &IntegrationId) -> bool
fn eq(&self, other: &IntegrationId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for IntegrationId
impl Serialize for IntegrationId
impl Copy for IntegrationId
impl Eq for IntegrationId
impl StructuralPartialEq for IntegrationId
Auto Trait Implementations§
impl RefUnwindSafe for IntegrationId
impl Send for IntegrationId
impl Sync for IntegrationId
impl Unpin for IntegrationId
impl UnwindSafe for IntegrationId
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