pub enum Language {
Python,
Node,
Rust,
Dart,
CSharp,
Java,
}Expand description
Supported programming languages and their corresponding package manager ecosystems.
Each variant represents a language that changepacks can manage versions for.
Variants§
Python
Python projects using pyproject.toml (pip, uv)
Node
Node.js projects using package.json (npm, pnpm, yarn, bun)
Rust
Rust projects using Cargo.toml (cargo)
Dart
Dart projects using pubspec.yaml (pub)
CSharp
C# projects using .csproj (NuGet, dotnet)
Java
Java projects using build.gradle or build.gradle.kts (Gradle)
Implementations§
Trait Implementations§
Source§impl Ord for Language
impl Ord for Language
Source§impl PartialOrd for Language
impl PartialOrd for Language
impl Copy for Language
impl Eq for Language
impl StructuralPartialEq for Language
Auto Trait Implementations§
impl Freeze for Language
impl RefUnwindSafe for Language
impl Send for Language
impl Sync for Language
impl Unpin for Language
impl UnsafeUnpin for Language
impl UnwindSafe for Language
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