pub enum Ecosystem {
Rust,
Node,
Python,
Go,
Binary,
}Expand description
A packaging ecosystem. homebrew is a distribution target, never an
ecosystem. Listed in the canonical order used for stable de-dup/expansion.
Variants§
Rust
Wire value rust.
Node
Wire value node.
Python
Wire value python.
Go
Wire value go.
Binary
Wire value binary.
Implementations§
Source§impl Ecosystem
impl Ecosystem
Source§impl Ecosystem
impl Ecosystem
Sourcepub fn default_registry(self) -> Registry
pub fn default_registry(self) -> Registry
The default registry for this ecosystem when targets is expanded
(SCHEMA.md §1 default-expansion table).
Sourcepub fn default_adapter(self, layout: ReleaseLayout) -> Adapter
pub fn default_adapter(self, layout: ReleaseLayout) -> Adapter
The default adapter for this ecosystem/layout when targets is expanded
(SCHEMA.md §1). Node’s default is layout-sensitive: single →
release-please, monorepo → changesets.
Trait Implementations§
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.