pub struct HumanInputRequest {
pub id: String,
pub prompt: String,
pub input_type: HumanInputType,
pub field_name: String,
pub required: bool,
pub default: Option<Value>,
pub validation: Option<Value>,
pub timeout_secs: Option<u64>,
}Expand description
Input request for human interaction
Fields§
§id: StringUnique request ID
prompt: StringHuman-readable prompt
input_type: HumanInputTypeType of input expected
field_name: StringField name to store result
required: boolWhether input is required
default: Option<Value>Default value
validation: Option<Value>Validation schema (JSON Schema format)
timeout_secs: Option<u64>Timeout in seconds
Implementations§
Source§impl HumanInputRequest
impl HumanInputRequest
Sourcepub fn new(prompt: impl Into<String>, field_name: impl Into<String>) -> Self
pub fn new(prompt: impl Into<String>, field_name: impl Into<String>) -> Self
Create a new input request
Sourcepub fn input_type(self, t: HumanInputType) -> Self
pub fn input_type(self, t: HumanInputType) -> Self
Set input type
Sourcepub fn with_default(self, value: Value) -> Self
pub fn with_default(self, value: Value) -> Self
Set default value
Sourcepub fn with_timeout(self, secs: u64) -> Self
pub fn with_timeout(self, secs: u64) -> Self
Set timeout
Trait Implementations§
Source§impl Clone for HumanInputRequest
impl Clone for HumanInputRequest
Source§fn clone(&self) -> HumanInputRequest
fn clone(&self) -> HumanInputRequest
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 HumanInputRequest
impl Debug for HumanInputRequest
Source§impl<'de> Deserialize<'de> for HumanInputRequest
impl<'de> Deserialize<'de> for HumanInputRequest
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
Auto Trait Implementations§
impl Freeze for HumanInputRequest
impl RefUnwindSafe for HumanInputRequest
impl Send for HumanInputRequest
impl Sync for HumanInputRequest
impl Unpin for HumanInputRequest
impl UnsafeUnpin for HumanInputRequest
impl UnwindSafe for HumanInputRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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