pub enum ValidationWarning {
HooksUnsupported {
project: String,
agent: String,
runtime: String,
count: usize,
},
SubagentsUnsupported {
project: String,
agent: String,
runtime: String,
count: usize,
},
SkillsUnsupported {
project: String,
agent: String,
runtime: String,
count: usize,
},
EffortUnsupported {
project: String,
agent: String,
runtime: String,
},
McpEnvInterpolationUnsupported {
project: String,
agent: String,
runtime: String,
server: String,
},
PermissionModeUnsupported {
project: String,
agent: String,
runtime: String,
mode: String,
},
PermissionModeBypassDowngraded {
project: String,
agent: String,
},
}Expand description
Non-fatal findings: compose shapes that load and render fine but
silently drop declared behavior. teamctl validate prints these
without failing — the compose is still valid, the operator just
isn’t getting what they wrote.
Variants§
HooksUnsupported
SubagentsUnsupported
SkillsUnsupported
EffortUnsupported
McpEnvInterpolationUnsupported
PermissionModeUnsupported
PermissionModeBypassDowngraded
Trait Implementations§
Source§impl Debug for ValidationWarning
impl Debug for ValidationWarning
Source§impl Display for ValidationWarning
impl Display for ValidationWarning
impl Eq for ValidationWarning
Source§impl Error for ValidationWarning
impl Error for ValidationWarning
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for ValidationWarning
impl PartialEq for ValidationWarning
impl StructuralPartialEq for ValidationWarning
Auto Trait Implementations§
impl Freeze for ValidationWarning
impl RefUnwindSafe for ValidationWarning
impl Send for ValidationWarning
impl Sync for ValidationWarning
impl Unpin for ValidationWarning
impl UnsafeUnpin for ValidationWarning
impl UnwindSafe for ValidationWarning
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<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§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.