pub struct PackageQuantizerSearchPlan {
pub min_quantizer: u8,
pub max_quantizer: u8,
pub start_quantizer: u8,
pub done: bool,
pub next_quantizer: Option<u8>,
pub note: String,
pub best_quantizer: Option<u8>,
}Fields§
§min_quantizer: u8§max_quantizer: u8§start_quantizer: u8§done: bool§next_quantizer: Option<u8>§note: String§best_quantizer: Option<u8>Trait Implementations§
Source§impl Clone for PackageQuantizerSearchPlan
impl Clone for PackageQuantizerSearchPlan
Source§fn clone(&self) -> PackageQuantizerSearchPlan
fn clone(&self) -> PackageQuantizerSearchPlan
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 PackageQuantizerSearchPlan
impl Debug for PackageQuantizerSearchPlan
Auto Trait Implementations§
impl Freeze for PackageQuantizerSearchPlan
impl RefUnwindSafe for PackageQuantizerSearchPlan
impl Send for PackageQuantizerSearchPlan
impl Sync for PackageQuantizerSearchPlan
impl Unpin for PackageQuantizerSearchPlan
impl UnsafeUnpin for PackageQuantizerSearchPlan
impl UnwindSafe for PackageQuantizerSearchPlan
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