pub enum PromptSegment {
Static(String),
Scrubbed(ScrubbedText),
}Expand description
A single segment of a prompt template.
Variants§
Static(String)
Fixed text known at compile time. Serialized as the string content.
Scrubbed(ScrubbedText)
Pre-scrubbed user/stored content.
Trait Implementations§
Source§impl Clone for PromptSegment
impl Clone for PromptSegment
Source§fn clone(&self) -> PromptSegment
fn clone(&self) -> PromptSegment
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 PromptSegment
impl Debug for PromptSegment
Source§impl<'de> Deserialize<'de> for PromptSegment
impl<'de> Deserialize<'de> for PromptSegment
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 PromptSegment
impl RefUnwindSafe for PromptSegment
impl Send for PromptSegment
impl Sync for PromptSegment
impl Unpin for PromptSegment
impl UnwindSafe for PromptSegment
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