pub struct EmbeddingModelRegistryRecord {
pub engine_name: String,
pub model_id: String,
pub key_version: String,
pub dimensions: u32,
pub status: String,
pub activated_at: Option<i64>,
pub superseded_at: Option<i64>,
}Expand description
A record from the _embedding_models registry table.
Fields§
§engine_name: String§model_id: String§key_version: String§dimensions: u32§status: String§activated_at: Option<i64>§superseded_at: Option<i64>Trait Implementations§
Source§impl Clone for EmbeddingModelRegistryRecord
impl Clone for EmbeddingModelRegistryRecord
Source§fn clone(&self) -> EmbeddingModelRegistryRecord
fn clone(&self) -> EmbeddingModelRegistryRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EmbeddingModelRegistryRecord
impl RefUnwindSafe for EmbeddingModelRegistryRecord
impl Send for EmbeddingModelRegistryRecord
impl Sync for EmbeddingModelRegistryRecord
impl Unpin for EmbeddingModelRegistryRecord
impl UnsafeUnpin for EmbeddingModelRegistryRecord
impl UnwindSafe for EmbeddingModelRegistryRecord
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