pub enum SupportedLanguage {
Go,
Kotlin,
Scala,
Swift,
TypeScript,
Python,
}
Expand description
All supported programming languages.
Variants§
Implementations§
Source§impl SupportedLanguage
impl SupportedLanguage
Sourcepub fn all_languages() -> impl Iterator<Item = Self>
pub fn all_languages() -> impl Iterator<Item = Self>
Returns an iterator over all supported language variants.
Sourcepub fn language_extension(&self) -> &'static str
pub fn language_extension(&self) -> &'static str
Get the file name extension for the supported language.
Trait Implementations§
Source§impl Clone for SupportedLanguage
impl Clone for SupportedLanguage
Source§fn clone(&self) -> SupportedLanguage
fn clone(&self) -> SupportedLanguage
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 SupportedLanguage
impl Debug for SupportedLanguage
Source§impl FromStr for SupportedLanguage
impl FromStr for SupportedLanguage
Source§impl Hash for SupportedLanguage
impl Hash for SupportedLanguage
Source§impl PartialEq for SupportedLanguage
impl PartialEq for SupportedLanguage
Source§impl TryFrom<&Ident> for SupportedLanguage
impl TryFrom<&Ident> for SupportedLanguage
impl Copy for SupportedLanguage
impl Eq for SupportedLanguage
impl StructuralPartialEq for SupportedLanguage
Auto Trait Implementations§
impl Freeze for SupportedLanguage
impl RefUnwindSafe for SupportedLanguage
impl Send for SupportedLanguage
impl Sync for SupportedLanguage
impl Unpin for SupportedLanguage
impl UnwindSafe for SupportedLanguage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more