pub enum ConfigureEmbeddingOutcome {
Activated {
profile_id: i64,
},
Unchanged {
profile_id: i64,
},
Replaced {
old_profile_id: i64,
new_profile_id: i64,
stale_kinds: usize,
},
}Expand description
Outcome of AdminService::configure_embedding.
Variants§
Activated
No active embedding profile existed; a new one was inserted.
Unchanged
The requested identity matched the active profile exactly; nothing was changed.
Replaced
The active profile was replaced and any enabled vector index
schemas were marked stale.
Trait Implementations§
Source§impl Clone for ConfigureEmbeddingOutcome
impl Clone for ConfigureEmbeddingOutcome
Source§fn clone(&self) -> ConfigureEmbeddingOutcome
fn clone(&self) -> ConfigureEmbeddingOutcome
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 ConfigureEmbeddingOutcome
impl Debug for ConfigureEmbeddingOutcome
impl Eq for ConfigureEmbeddingOutcome
impl StructuralPartialEq for ConfigureEmbeddingOutcome
Auto Trait Implementations§
impl Freeze for ConfigureEmbeddingOutcome
impl RefUnwindSafe for ConfigureEmbeddingOutcome
impl Send for ConfigureEmbeddingOutcome
impl Sync for ConfigureEmbeddingOutcome
impl Unpin for ConfigureEmbeddingOutcome
impl UnsafeUnpin for ConfigureEmbeddingOutcome
impl UnwindSafe for ConfigureEmbeddingOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.