pub struct BatchedEvaluationConfig {
pub max_concurrency: usize,
pub page_size: i32,
pub max_retries: usize,
pub start_after: Option<String>,
pub run_name: String,
}Expand description
Configuration for batched evaluation runs.
Fields§
§max_concurrency: usizeMaximum number of concurrent task executions.
page_size: i32Page size for fetching dataset items.
max_retries: usizeMaximum number of retries for HTTP requests.
start_after: Option<String>Resume token: skip items with IDs lexicographically before this value.
run_name: StringName for the experiment run.
Trait Implementations§
Source§impl Clone for BatchedEvaluationConfig
impl Clone for BatchedEvaluationConfig
Source§fn clone(&self) -> BatchedEvaluationConfig
fn clone(&self) -> BatchedEvaluationConfig
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 BatchedEvaluationConfig
impl Debug for BatchedEvaluationConfig
Auto Trait Implementations§
impl Freeze for BatchedEvaluationConfig
impl RefUnwindSafe for BatchedEvaluationConfig
impl Send for BatchedEvaluationConfig
impl Sync for BatchedEvaluationConfig
impl Unpin for BatchedEvaluationConfig
impl UnsafeUnpin for BatchedEvaluationConfig
impl UnwindSafe for BatchedEvaluationConfig
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