#[non_exhaustive]pub enum SourceLanguage {
TypeScript,
Python,
}Expand description
Source language that produced a standard-library call shape.
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.
Trait Implementations§
Source§impl Clone for SourceLanguage
impl Clone for SourceLanguage
impl Copy for SourceLanguage
Source§impl Debug for SourceLanguage
impl Debug for SourceLanguage
impl Eq for SourceLanguage
Source§impl PartialEq for SourceLanguage
impl PartialEq for SourceLanguage
impl StructuralPartialEq for SourceLanguage
Auto Trait Implementations§
impl Freeze for SourceLanguage
impl RefUnwindSafe for SourceLanguage
impl Send for SourceLanguage
impl Sync for SourceLanguage
impl Unpin for SourceLanguage
impl UnsafeUnpin for SourceLanguage
impl UnwindSafe for SourceLanguage
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