pub struct OutputAuditPhrase {
pub phrase: String,
pub tense: String,
pub person: String,
pub classification: String,
pub intent: String,
pub nouns: Vec<OutputAuditItem>,
pub verbs: Vec<OutputAuditItem>,
}
Fields§
§phrase: String
§tense: String
§person: String
§classification: String
§intent: String
§nouns: Vec<OutputAuditItem>
§verbs: Vec<OutputAuditItem>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OutputAuditPhrase
impl<'de> Deserialize<'de> for OutputAuditPhrase
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
Source§impl Display for OutputAuditPhrase
impl Display for OutputAuditPhrase
Auto Trait Implementations§
impl Freeze for OutputAuditPhrase
impl RefUnwindSafe for OutputAuditPhrase
impl Send for OutputAuditPhrase
impl Sync for OutputAuditPhrase
impl Unpin for OutputAuditPhrase
impl UnwindSafe for OutputAuditPhrase
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