pub struct ProbeTrace {
pub probe: String,
pub matched: bool,
pub note: String,
}Expand description
A single probe’s decision, recorded so the skill knows which paths were already tried.
Fields§
§probe: String§matched: bool§note: StringTrait Implementations§
Source§impl Clone for ProbeTrace
impl Clone for ProbeTrace
Source§fn clone(&self) -> ProbeTrace
fn clone(&self) -> ProbeTrace
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 ProbeTrace
impl Debug for ProbeTrace
Source§impl<'de> Deserialize<'de> for ProbeTrace
impl<'de> Deserialize<'de> for ProbeTrace
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
Auto Trait Implementations§
impl Freeze for ProbeTrace
impl RefUnwindSafe for ProbeTrace
impl Send for ProbeTrace
impl Sync for ProbeTrace
impl Unpin for ProbeTrace
impl UnsafeUnpin for ProbeTrace
impl UnwindSafe for ProbeTrace
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