pub struct SystemPromptPreset {
pub preset_type: String,
pub preset: String,
pub append: Option<String>,
}Expand description
System prompt preset.
Fields§
§preset_type: StringType (always “preset”).
preset: StringPreset name.
append: Option<String>Text to append.
Trait Implementations§
Source§impl Clone for SystemPromptPreset
impl Clone for SystemPromptPreset
Source§fn clone(&self) -> SystemPromptPreset
fn clone(&self) -> SystemPromptPreset
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 SystemPromptPreset
impl Debug for SystemPromptPreset
Source§impl<'de> Deserialize<'de> for SystemPromptPreset
impl<'de> Deserialize<'de> for SystemPromptPreset
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 SystemPromptPreset
impl RefUnwindSafe for SystemPromptPreset
impl Send for SystemPromptPreset
impl Sync for SystemPromptPreset
impl Unpin for SystemPromptPreset
impl UnsafeUnpin for SystemPromptPreset
impl UnwindSafe for SystemPromptPreset
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