pub struct BatchSizeRecommendation {
pub recommended_size: usize,
pub confidence: f64,
pub reasoning: Vec<String>,
}
Fields§
§recommended_size: usize
§confidence: f64
§reasoning: Vec<String>
Trait Implementations§
Source§impl Clone for BatchSizeRecommendation
impl Clone for BatchSizeRecommendation
Source§fn clone(&self) -> BatchSizeRecommendation
fn clone(&self) -> BatchSizeRecommendation
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 moreAuto Trait Implementations§
impl Freeze for BatchSizeRecommendation
impl RefUnwindSafe for BatchSizeRecommendation
impl Send for BatchSizeRecommendation
impl Sync for BatchSizeRecommendation
impl Unpin for BatchSizeRecommendation
impl UnwindSafe for BatchSizeRecommendation
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