pub struct SystemPromptPart {
pub content: String,
pub timestamp: DateTime<Utc>,
pub dynamic_ref: Option<String>,
}Expand description
System prompt part.
Fields§
§content: StringThe system prompt content.
timestamp: DateTime<Utc>When this part was created.
dynamic_ref: Option<String>Reference to a dynamic prompt source.
Implementations§
Source§impl SystemPromptPart
impl SystemPromptPart
Sourcepub fn with_dynamic_ref(self, ref_name: impl Into<String>) -> Self
pub fn with_dynamic_ref(self, ref_name: impl Into<String>) -> Self
Set the dynamic reference.
Sourcepub fn with_timestamp(self, timestamp: DateTime<Utc>) -> Self
pub fn with_timestamp(self, timestamp: DateTime<Utc>) -> Self
Set the timestamp.
Trait Implementations§
Source§impl Clone for SystemPromptPart
impl Clone for SystemPromptPart
Source§fn clone(&self) -> SystemPromptPart
fn clone(&self) -> SystemPromptPart
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 SystemPromptPart
impl Debug for SystemPromptPart
Source§impl<'de> Deserialize<'de> for SystemPromptPart
impl<'de> Deserialize<'de> for SystemPromptPart
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 From<&str> for SystemPromptPart
impl From<&str> for SystemPromptPart
Source§impl From<String> for SystemPromptPart
impl From<String> for SystemPromptPart
Source§impl PartialEq for SystemPromptPart
impl PartialEq for SystemPromptPart
Source§impl Serialize for SystemPromptPart
impl Serialize for SystemPromptPart
impl Eq for SystemPromptPart
impl StructuralPartialEq for SystemPromptPart
Auto Trait Implementations§
impl Freeze for SystemPromptPart
impl RefUnwindSafe for SystemPromptPart
impl Send for SystemPromptPart
impl Sync for SystemPromptPart
impl Unpin for SystemPromptPart
impl UnwindSafe for SystemPromptPart
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