Skip to main content

StaticFragment

Struct StaticFragment 

Source
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>

Source

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.

Source§

fn from(value: &'a str) -> Self

Converts to this type from the input type.
Source§

impl IntoPrompt for StaticFragment<'_>

Source§

type Message = GenericMessage

Chat message representation emitted by the prompt.
Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.