pub struct PromptConfig {
pub id: String,
pub paths: Vec<Path<'static>>,
pub markdown: String,
}Expand description
Parsed content of a named prompt assembled from one or more markdown files.
Fields§
§id: StringPrompt identifier such as SYSTEM or COMPACTION.
paths: Vec<Path<'static>>Absolute paths to the markdown files that were concatenated.
markdown: StringConcatenated markdown content.
Trait Implementations§
Source§impl Clone for PromptConfig
impl Clone for PromptConfig
Source§fn clone(&self) -> PromptConfig
fn clone(&self) -> PromptConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PromptConfig
impl Debug for PromptConfig
Source§impl PartialEq for PromptConfig
impl PartialEq for PromptConfig
Source§fn eq(&self, other: &PromptConfig) -> bool
fn eq(&self, other: &PromptConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PromptConfig
impl StructuralPartialEq for PromptConfig
Auto Trait Implementations§
impl Freeze for PromptConfig
impl RefUnwindSafe for PromptConfig
impl Send for PromptConfig
impl Sync for PromptConfig
impl Unpin for PromptConfig
impl UnsafeUnpin for PromptConfig
impl UnwindSafe for PromptConfig
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.