pub enum EmbeddingOutput {
Float(Vec<f64>),
Base64(String),
}Variants§
Trait Implementations§
Source§impl Clone for EmbeddingOutput
impl Clone for EmbeddingOutput
Source§fn clone(&self) -> EmbeddingOutput
fn clone(&self) -> EmbeddingOutput
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 EmbeddingOutput
impl Debug for EmbeddingOutput
Source§impl<'de> Deserialize<'de> for EmbeddingOutput
impl<'de> Deserialize<'de> for EmbeddingOutput
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
Source§impl PartialEq for EmbeddingOutput
impl PartialEq for EmbeddingOutput
Source§impl Serialize for EmbeddingOutput
impl Serialize for EmbeddingOutput
impl StructuralPartialEq for EmbeddingOutput
Auto Trait Implementations§
impl Freeze for EmbeddingOutput
impl RefUnwindSafe for EmbeddingOutput
impl Send for EmbeddingOutput
impl Sync for EmbeddingOutput
impl Unpin for EmbeddingOutput
impl UnwindSafe for EmbeddingOutput
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