pub enum Include {
CustomerContact,
PetProfile,
ReservationLedger,
}Expand description
Decision choices for include in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
CustomerContact
Selects customer contact for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
PetProfile
Selects pet profile for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
ReservationLedger
Selects reservation ledger 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<'de> Deserialize<'de> for Include
impl<'de> Deserialize<'de> for Include
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
impl Copy for Include
impl Eq for Include
impl StructuralPartialEq for Include
Auto Trait Implementations§
impl Freeze for Include
impl RefUnwindSafe for Include
impl Send for Include
impl Sync for Include
impl Unpin for Include
impl UnsafeUnpin for Include
impl UnwindSafe for Include
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