pub enum Feature {
RuntimeCoverage,
PortfolioDashboard,
McpCloudTools,
CrossRepoAggregation,
Other(String),
}Expand description
Feature flag enum aligned with the protocol’s Feature strings.
Wire format stays a string array; new variants are additive in minor protocol
bumps and unrecognized strings round-trip through Feature::Other.
Variants§
RuntimeCoverage
Paid local runtime coverage analyzer (CLI + sidecar).
PortfolioDashboard
Cloud portfolio dashboard. Currently inert: granted in JWTs but not yet consumed by any CLI command.
McpCloudTools
Cloud MCP tools. Currently inert: granted in JWTs but not yet consumed by any CLI command.
CrossRepoAggregation
Cross-repo aggregation. Currently inert: granted in JWTs but not yet consumed by any CLI command.
Other(String)
Forward-compat sentinel for unrecognized feature strings.
Implementations§
Trait Implementations§
impl Eq for Feature
impl StructuralPartialEq for Feature
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnsafeUnpin for Feature
impl UnwindSafe for Feature
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.