pub struct QuantizationUpdate {
pub disabled: bool,
pub config: Option<Box<QuantizationConfig>>,
}Expand description
WITH QUANTIZATION replacement emitted by ALTER COLLECTION.
Fields§
§disabled: booldisabled = true — drop the collection’s quantization config.
config: Option<Box<QuantizationConfig>>Replacement quantization settings; None only when disabled.
Trait Implementations§
Source§impl Clone for QuantizationUpdate
impl Clone for QuantizationUpdate
Source§fn clone(&self) -> QuantizationUpdate
fn clone(&self) -> QuantizationUpdate
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 QuantizationUpdate
impl Debug for QuantizationUpdate
Source§impl PartialEq for QuantizationUpdate
impl PartialEq for QuantizationUpdate
impl StructuralPartialEq for QuantizationUpdate
Auto Trait Implementations§
impl Freeze for QuantizationUpdate
impl RefUnwindSafe for QuantizationUpdate
impl Send for QuantizationUpdate
impl Sync for QuantizationUpdate
impl Unpin for QuantizationUpdate
impl UnsafeUnpin for QuantizationUpdate
impl UnwindSafe for QuantizationUpdate
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