pub struct StaticCountResponse {
pub static_count: usize,
}Expand description
Response from GET /v1/admin/reembed/static-count (v0.11.91+).
Returns the number of _embedding_kind=static vectors pending ONNX upgrade.
A static_count of 0 means steady
state — all vectors are at full ONNX quality.
Fields§
§static_count: usizeNumber of static vectors pending re-embedding.
Trait Implementations§
Source§impl Clone for StaticCountResponse
impl Clone for StaticCountResponse
Source§fn clone(&self) -> StaticCountResponse
fn clone(&self) -> StaticCountResponse
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 moreSource§impl Debug for StaticCountResponse
impl Debug for StaticCountResponse
Source§impl<'de> Deserialize<'de> for StaticCountResponse
impl<'de> Deserialize<'de> for StaticCountResponse
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 StaticCountResponse
impl RefUnwindSafe for StaticCountResponse
impl Send for StaticCountResponse
impl Sync for StaticCountResponse
impl Unpin for StaticCountResponse
impl UnsafeUnpin for StaticCountResponse
impl UnwindSafe for StaticCountResponse
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