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 new(content: impl Into<String>) -> SystemPromptPart
pub fn new(content: impl Into<String>) -> SystemPromptPart
Create a new system prompt part.
Sourcepub fn with_dynamic_ref(self, ref_name: impl Into<String>) -> SystemPromptPart
pub fn with_dynamic_ref(self, ref_name: impl Into<String>) -> SystemPromptPart
Set the dynamic reference.
Sourcepub fn with_timestamp(self, timestamp: DateTime<Utc>) -> SystemPromptPart
pub fn with_timestamp(self, timestamp: DateTime<Utc>) -> SystemPromptPart
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<SystemPromptPart, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SystemPromptPart, <__D as Deserializer<'de>>::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§fn from(s: &str) -> SystemPromptPart
fn from(s: &str) -> SystemPromptPart
Converts to this type from the input type.
Source§impl From<String> for SystemPromptPart
impl From<String> for SystemPromptPart
Source§fn from(s: String) -> SystemPromptPart
fn from(s: String) -> SystemPromptPart
Converts to this type from the input type.
Source§impl PartialEq for SystemPromptPart
impl PartialEq for SystemPromptPart
Source§impl Serialize for SystemPromptPart
impl Serialize for SystemPromptPart
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.