pub enum Ecosystem {
Node,
Python,
Rust,
Go,
Java,
DotNet,
Ruby,
Php,
Generic,
}
Expand description
Ecosystem that a tool or package manager belongs to
Variants§
Node
Node.js ecosystem
Python
Python ecosystem
Rust
Rust ecosystem
Go
Go ecosystem
Java
Java ecosystem
DotNet
.NET ecosystem
Ruby
Ruby ecosystem
Php
PHP ecosystem
Generic
Generic/cross-platform tools
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ecosystem
impl<'de> Deserialize<'de> for Ecosystem
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
impl Copy for Ecosystem
impl Eq for Ecosystem
impl StructuralPartialEq for Ecosystem
Auto Trait Implementations§
impl Freeze for Ecosystem
impl RefUnwindSafe for Ecosystem
impl Send for Ecosystem
impl Sync for Ecosystem
impl Unpin for Ecosystem
impl UnwindSafe for Ecosystem
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