Enum async_openai_wasm::types::EmbeddingInput
source · pub enum EmbeddingInput {
String(String),
StringArray(Vec<String>),
IntegerArray(Vec<u32>),
ArrayOfIntegerArray(Vec<Vec<u32>>),
}
Variants§
Trait Implementations§
source§impl Clone for EmbeddingInput
impl Clone for EmbeddingInput
source§fn clone(&self) -> EmbeddingInput
fn clone(&self) -> EmbeddingInput
Returns a copy 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 EmbeddingInput
impl Debug for EmbeddingInput
source§impl Default for EmbeddingInput
impl Default for EmbeddingInput
source§impl From<&String> for EmbeddingInput
impl From<&String> for EmbeddingInput
source§impl From<&str> for EmbeddingInput
impl From<&str> for EmbeddingInput
source§impl From<String> for EmbeddingInput
impl From<String> for EmbeddingInput
source§impl PartialEq for EmbeddingInput
impl PartialEq for EmbeddingInput
source§fn eq(&self, other: &EmbeddingInput) -> bool
fn eq(&self, other: &EmbeddingInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EmbeddingInput
impl Serialize for EmbeddingInput
impl StructuralPartialEq for EmbeddingInput
Auto Trait Implementations§
impl Freeze for EmbeddingInput
impl RefUnwindSafe for EmbeddingInput
impl Send for EmbeddingInput
impl Sync for EmbeddingInput
impl Unpin for EmbeddingInput
impl UnwindSafe for EmbeddingInput
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