pub struct StaticFragment<'a>(/* private fields */);Expand description
A borrowed static string bundled with an LLM chat role.
The tuple struct keeps the footprint at exactly two machine words
(&str + GenericRole) while still offering ergonomic constructors.
Implementations§
Source§impl<'a> StaticFragment<'a>
impl<'a> StaticFragment<'a>
Sourcepub fn new(value: &'a str, role: GenericRole) -> Self
pub fn new(value: &'a str, role: GenericRole) -> Self
Create a new fragment with explicit role.
Trait Implementations§
Source§impl<'a> From<&'a str> for StaticFragment<'a>
Shorthand so you can write StaticFragment::from("…") without specifying
the role each time. Defaults to system.
impl<'a> From<&'a str> for StaticFragment<'a>
Shorthand so you can write StaticFragment::from("…") without specifying
the role each time. Defaults to system.
Source§impl IntoPrompt for StaticFragment<'_>
impl IntoPrompt for StaticFragment<'_>
Source§type Message = GenericMessage
type Message = GenericMessage
Chat message representation emitted by the prompt.
Source§fn into_prompt(self) -> Vec<Self::Message>
fn into_prompt(self) -> Vec<Self::Message>
Consume
self and return all messages in the desired order.Auto Trait Implementations§
impl<'a> Freeze for StaticFragment<'a>
impl<'a> RefUnwindSafe for StaticFragment<'a>
impl<'a> Send for StaticFragment<'a>
impl<'a> Sync for StaticFragment<'a>
impl<'a> Unpin for StaticFragment<'a>
impl<'a> UnsafeUnpin for StaticFragment<'a>
impl<'a> UnwindSafe for StaticFragment<'a>
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