pub struct Phrase {
pub text: OsString,
pub semantics: Vec<SemanticTree>,
}
Expand description
A successfully recognized phrase.
Fields§
§text: OsString
The text of the recognized phrase.
semantics: Vec<SemanticTree>
The semantic information associated with the phrase.
Trait Implementations§
impl StructuralPartialEq for Phrase
Auto Trait Implementations§
impl Freeze for Phrase
impl RefUnwindSafe for Phrase
impl Send for Phrase
impl Sync for Phrase
impl Unpin for Phrase
impl UnwindSafe for Phrase
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