pub enum ExpectedContent {
VaccineProof,
MedicationInstructions,
BoardingAgreement,
IncidentReport,
}Expand description
Decision choices for expected content in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
VaccineProof
Selects vaccine proof for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
MedicationInstructions
Selects medication instructions for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
BoardingAgreement
Selects boarding agreement for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
IncidentReport
Selects incident report for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for ExpectedContent
impl Clone for ExpectedContent
Source§fn clone(&self) -> ExpectedContent
fn clone(&self) -> ExpectedContent
Returns a duplicate of the value. Read more
1.0.0 · 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 ExpectedContent
impl Debug for ExpectedContent
Source§impl<'de> Deserialize<'de> for ExpectedContent
impl<'de> Deserialize<'de> for ExpectedContent
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 PartialEq for ExpectedContent
impl PartialEq for ExpectedContent
Source§impl Serialize for ExpectedContent
impl Serialize for ExpectedContent
impl Copy for ExpectedContent
impl Eq for ExpectedContent
impl StructuralPartialEq for ExpectedContent
Auto Trait Implementations§
impl Freeze for ExpectedContent
impl RefUnwindSafe for ExpectedContent
impl Send for ExpectedContent
impl Sync for ExpectedContent
impl Unpin for ExpectedContent
impl UnsafeUnpin for ExpectedContent
impl UnwindSafe for ExpectedContent
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