pub struct ApiConfig {
pub with_buf: Option<bool>,
pub collect_metrics: Option<bool>,
pub alg: Option<DigestAlg>,
pub parallelism: Option<ParallelismConfig>,
}Fields§
§with_buf: Option<bool>Whether to capture the output buffer in memory.
NoneorSome(false)→ no buffer capture (production default).Some(true)→ capture buffer for tests/benchmarks.
collect_metrics: Option<bool>Whether to collect detailed metrics during pipeline execution. Currently unused, reserved for future expansion.
alg: Option<DigestAlg>Supported digest algorithms (extensible).
parallelism: Option<ParallelismConfig>Parallelism configuration.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ApiConfig
impl RefUnwindSafe for ApiConfig
impl Send for ApiConfig
impl Sync for ApiConfig
impl Unpin for ApiConfig
impl UnsafeUnpin for ApiConfig
impl UnwindSafe for ApiConfig
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