pub struct CommandIntent {
pub command: String,
pub payload: String,
pub confidence: f32,
}Expand description
A resolved intent: which command to run, with what free-text payload.
Fields§
§command: String§payload: String§confidence: f320.0–1.0. Heuristic hits are high; classifier supplies its own.
Implementations§
Source§impl CommandIntent
impl CommandIntent
Sourcepub fn as_invocation(&self) -> String
pub fn as_invocation(&self) -> String
Render as the sparrow invocation it represents (for display/confirm).
Trait Implementations§
Source§impl Clone for CommandIntent
impl Clone for CommandIntent
Source§fn clone(&self) -> CommandIntent
fn clone(&self) -> CommandIntent
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 CommandIntent
impl Debug for CommandIntent
Source§impl PartialEq for CommandIntent
impl PartialEq for CommandIntent
Source§fn eq(&self, other: &CommandIntent) -> bool
fn eq(&self, other: &CommandIntent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommandIntent
Auto Trait Implementations§
impl Freeze for CommandIntent
impl RefUnwindSafe for CommandIntent
impl Send for CommandIntent
impl Sync for CommandIntent
impl Unpin for CommandIntent
impl UnsafeUnpin for CommandIntent
impl UnwindSafe for CommandIntent
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<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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