pub struct PhantomReach {
pub name_as_called: String,
pub resolution: PhantomResolution,
pub active_context_features: Vec<String>,
}Expand description
#717: a phantom tool/capability reach — a tool/notion the model grabbed for
that is NOT a real tool (an alias or hallucination), or a real tool that
returned empty-by-design (state_get for an unset key, recall with no
matches). Distinct from ToolEvent (which stays for tool-recall): this is
the alias-seam telemetry — which foreign notions weak local models reach
for, so the seam is driven by data, not guesses.
Fields§
§name_as_called: StringThe literal tool/notion name the model emitted.
resolution: PhantomResolutionHow newt resolved the reach.
active_context_features: Vec<String>Context features in effect when the reach happened (so we can see e.g.
scheduled was on but the model still reached for a phantom plan).
Empty when unknown.
Trait Implementations§
Source§impl Clone for PhantomReach
impl Clone for PhantomReach
Source§fn clone(&self) -> PhantomReach
fn clone(&self) -> PhantomReach
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 PhantomReach
impl Debug for PhantomReach
Source§impl<'de> Deserialize<'de> for PhantomReach
impl<'de> Deserialize<'de> for PhantomReach
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 PhantomReach
Source§impl PartialEq for PhantomReach
impl PartialEq for PhantomReach
Source§impl Serialize for PhantomReach
impl Serialize for PhantomReach
impl StructuralPartialEq for PhantomReach
Auto Trait Implementations§
impl Freeze for PhantomReach
impl RefUnwindSafe for PhantomReach
impl Send for PhantomReach
impl Sync for PhantomReach
impl Unpin for PhantomReach
impl UnsafeUnpin for PhantomReach
impl UnwindSafe for PhantomReach
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.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
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more