pub enum Ecosystem {
Unknown,
Rust,
Node,
Python,
Go,
Java,
Generic,
}Expand description
Detected project ecosystem.
Variants§
Unknown
Unknown or undetected ecosystem.
Rust
Rust ecosystem with Cargo.
Node
Node.js ecosystem with npm/yarn.
Python
Python ecosystem with pip/poetry.
Go
Go ecosystem with go modules.
Java
Java ecosystem with Maven/Gradle.
Generic
Generic project without specific ecosystem.
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
Auto Trait Implementations§
impl Freeze for Ecosystem
impl RefUnwindSafe for Ecosystem
impl Send for Ecosystem
impl Sync for Ecosystem
impl Unpin for Ecosystem
impl UnsafeUnpin 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