pub enum ExecutorHint {
Auto,
Force(Executor),
}Expand description
What the caller HINTS for axis 3. Final decision is the orchestrator’s:
it intersects (agent.allowed_runtimes, caller.runtime_mode, available_runners).
Variants§
Auto
Resolve from agent runtime + caller + available runners. Default.
Force(Executor)
Override the resolution. Rare — tests, debugging.
Trait Implementations§
Source§impl Clone for ExecutorHint
impl Clone for ExecutorHint
Source§fn clone(&self) -> ExecutorHint
fn clone(&self) -> ExecutorHint
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 ExecutorHint
impl Debug for ExecutorHint
Source§impl Default for ExecutorHint
impl Default for ExecutorHint
Source§fn default() -> ExecutorHint
fn default() -> ExecutorHint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutorHint
impl<'de> Deserialize<'de> for ExecutorHint
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
impl Eq for ExecutorHint
Source§impl PartialEq for ExecutorHint
impl PartialEq for ExecutorHint
Source§fn eq(&self, other: &ExecutorHint) -> bool
fn eq(&self, other: &ExecutorHint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecutorHint
impl Serialize for ExecutorHint
impl StructuralPartialEq for ExecutorHint
Auto Trait Implementations§
impl Freeze for ExecutorHint
impl RefUnwindSafe for ExecutorHint
impl Send for ExecutorHint
impl Sync for ExecutorHint
impl Unpin for ExecutorHint
impl UnsafeUnpin for ExecutorHint
impl UnwindSafe for ExecutorHint
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.