Skip to main content

UserPart

Enum UserPart 

Source
#[non_exhaustive]
pub enum UserPart { Text(TextPart), Image(ImagePart), File(FilePart), }
Expand description

A part of a user message.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Text(TextPart)

Text.

§

Image(ImagePart)

An image; normalized to a file part with a detected media type during conversion.

§

File(FilePart)

A file with an explicit media type.

Implementations§

Source§

impl UserPart

Source

pub fn text(text: impl Into<String>) -> Self

A text part.

Source

pub fn image(source: impl Into<FileSource>) -> Self

An image from any source.

Source

pub fn image_bytes(data: impl Into<Bytes>) -> Self

An image from inline bytes.

Source

pub fn image_base64(data: impl Into<String>) -> Self

An image from base64 text.

Source

pub fn image_url(url: Url) -> Self

An image from a URL.

Source

pub fn file( source: impl Into<FileSource>, media_type: impl Into<MediaType>, ) -> Self

A file from any source.

Source

pub fn file_bytes( data: impl Into<Bytes>, media_type: impl Into<MediaType>, ) -> Self

A file from inline bytes.

Source

pub fn file_url(url: Url, media_type: impl Into<MediaType>) -> Self

A file from a URL.

Source

pub fn file_reference( reference: ProviderReference, media_type: impl Into<MediaType>, ) -> Self

A file previously uploaded to providers.

Source

pub fn file_text( text: impl Into<String>, media_type: impl Into<MediaType>, ) -> Self

An inline text document.

Source

pub fn file_path( path: impl Into<PathBuf>, media_type: impl Into<MediaType>, ) -> Self

A file read from a local path during conversion.

Source

pub fn with_filename(self, filename: impl Into<String>) -> Self

Sets the filename on a file part (no effect on other parts).

Source

pub fn with_provider_options(self, options: ProviderOptions) -> Self

Sets provider options.

Source

pub fn as_text(&self) -> Option<&str>

Returns the text of a text part.

Trait Implementations§

Source§

impl Clone for UserPart

Source§

fn clone(&self) -> UserPart

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for UserPart

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for UserPart

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<&str> for UserPart

Source§

fn from(text: &str) -> Self

Converts to this type from the input type.
Source§

impl From<FilePart> for UserPart

Source§

fn from(part: FilePart) -> Self

Converts to this type from the input type.
Source§

impl From<ImagePart> for UserPart

Source§

fn from(part: ImagePart) -> Self

Converts to this type from the input type.
Source§

impl From<String> for UserPart

Source§

fn from(text: String) -> Self

Converts to this type from the input type.
Source§

impl From<TextPart> for UserPart

Source§

fn from(part: TextPart) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for UserPart

Source§

fn eq(&self, other: &UserPart) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for UserPart

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for UserPart

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.