#[non_exhaustive]pub enum RuntimeCapability {
StructuredProtocolErrors,
HeadlessStdioLogPaths,
StatusSessionSetFilter,
StatusUpdatedSinceFilter,
TypedNudgeOutcomes,
ValidateTargetPreflight,
EventsCursor,
EventsLongPoll,
TmuxPaneSnapshot,
KillOutcomes,
SpawnConflicts,
SpawnRequestMounts,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
StructuredProtocolErrors
Error responses expose stable machine readable codes.
HeadlessStdioLogPaths
Headless spawn responses include stdout and stderr log paths.
StatusSessionSetFilter
Status requests accept a set of session ids.
StatusUpdatedSinceFilter
Status requests accept an updated time lower bound.
TypedNudgeOutcomes
Nudge responses expose typed delivery outcomes.
ValidateTargetPreflight
ValidateTarget checks a target string without spawning.
EventsCursor
Events support durable cursor replay.
EventsLongPoll
Events requests accept a bounded long poll wait window.
TmuxPaneSnapshot
Tmux targets support on demand pane snapshot capture.
KillOutcomes
Kill responses include typed Signalled or AlreadyExited outcomes.
SpawnConflicts
Spawn rejects session reuse and occupied tmux panes with typed conflicts.
SpawnRequestMounts
Spawn requests can carry declared host to container bind mounts.
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeCapability
impl Clone for RuntimeCapability
Source§fn clone(&self) -> RuntimeCapability
fn clone(&self) -> RuntimeCapability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeCapability
impl Debug for RuntimeCapability
Source§impl<'de> Deserialize<'de> for RuntimeCapability
impl<'de> Deserialize<'de> for RuntimeCapability
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
Source§impl Display for RuntimeCapability
impl Display for RuntimeCapability
Source§impl FromStr for RuntimeCapability
impl FromStr for RuntimeCapability
Source§impl PartialEq for RuntimeCapability
impl PartialEq for RuntimeCapability
Source§fn eq(&self, other: &RuntimeCapability) -> bool
fn eq(&self, other: &RuntimeCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeCapability
impl Serialize for RuntimeCapability
impl Copy for RuntimeCapability
impl Eq for RuntimeCapability
impl StructuralPartialEq for RuntimeCapability
Auto Trait Implementations§
impl Freeze for RuntimeCapability
impl RefUnwindSafe for RuntimeCapability
impl Send for RuntimeCapability
impl Sync for RuntimeCapability
impl Unpin for RuntimeCapability
impl UnsafeUnpin for RuntimeCapability
impl UnwindSafe for RuntimeCapability
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.