pub struct ListEmbeddingModelsResponse {
pub success: bool,
pub message: String,
pub data: Vec<EmbeddingProvider>,
pub supports_distributed_embedding: bool,
}Fields§
§success: bool§message: String§data: Vec<EmbeddingProvider>§supports_distributed_embedding: boolTrait Implementations§
Source§impl Clone for ListEmbeddingModelsResponse
impl Clone for ListEmbeddingModelsResponse
Source§fn clone(&self) -> ListEmbeddingModelsResponse
fn clone(&self) -> ListEmbeddingModelsResponse
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 ListEmbeddingModelsResponse
impl Debug for ListEmbeddingModelsResponse
Source§impl<'de> Deserialize<'de> for ListEmbeddingModelsResponse
impl<'de> Deserialize<'de> for ListEmbeddingModelsResponse
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
Auto Trait Implementations§
impl Freeze for ListEmbeddingModelsResponse
impl RefUnwindSafe for ListEmbeddingModelsResponse
impl Send for ListEmbeddingModelsResponse
impl Sync for ListEmbeddingModelsResponse
impl Unpin for ListEmbeddingModelsResponse
impl UnsafeUnpin for ListEmbeddingModelsResponse
impl UnwindSafe for ListEmbeddingModelsResponse
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