pub struct AssistivePromptConfig {
pub user_timezone: Option<String>,
}Expand description
Configuration for assistive prompt generation
Experimental feature for generating timezone-aware assistive prompts.
Fields§
§user_timezone: Option<String>IANA timezone identifier (e.g., “America/New_York”, “Europe/London”) for timezone-aware assistive prompts
Trait Implementations§
Source§impl Clone for AssistivePromptConfig
impl Clone for AssistivePromptConfig
Source§fn clone(&self) -> AssistivePromptConfig
fn clone(&self) -> AssistivePromptConfig
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 AssistivePromptConfig
impl Debug for AssistivePromptConfig
Source§impl<'de> Deserialize<'de> for AssistivePromptConfig
impl<'de> Deserialize<'de> for AssistivePromptConfig
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 AssistivePromptConfig
impl RefUnwindSafe for AssistivePromptConfig
impl Send for AssistivePromptConfig
impl Sync for AssistivePromptConfig
impl Unpin for AssistivePromptConfig
impl UnsafeUnpin for AssistivePromptConfig
impl UnwindSafe for AssistivePromptConfig
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