pub enum LanguageKind {
Rust,
TypeScript,
JavaScript,
Python,
C,
Cpp,
Go,
}Variants§
Trait Implementations§
Source§impl Clone for LanguageKind
impl Clone for LanguageKind
Source§fn clone(&self) -> LanguageKind
fn clone(&self) -> LanguageKind
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 LanguageKind
impl Debug for LanguageKind
Source§impl<'de> Deserialize<'de> for LanguageKind
impl<'de> Deserialize<'de> for LanguageKind
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 LanguageKind
impl PartialEq for LanguageKind
Source§fn eq(&self, other: &LanguageKind) -> bool
fn eq(&self, other: &LanguageKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LanguageKind
impl Serialize for LanguageKind
impl Copy for LanguageKind
impl Eq for LanguageKind
impl StructuralPartialEq for LanguageKind
Auto Trait Implementations§
impl Freeze for LanguageKind
impl RefUnwindSafe for LanguageKind
impl Send for LanguageKind
impl Sync for LanguageKind
impl Unpin for LanguageKind
impl UnsafeUnpin for LanguageKind
impl UnwindSafe for LanguageKind
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