pub struct SystemBuilder { /* private fields */ }Expand description
Fluent builder for AgenticVerificationSystem
Implementations§
Source§impl SystemBuilder
impl SystemBuilder
Sourcepub fn consensus_threshold(self, threshold: f64) -> Self
pub fn consensus_threshold(self, threshold: f64) -> Self
Set the consensus threshold (0.0-1.0)
Sourcepub fn consensus_timeout_ms(self, timeout_ms: u64) -> Self
pub fn consensus_timeout_ms(self, timeout_ms: u64) -> Self
Set the consensus timeout in milliseconds
Sourcepub fn max_pool_size(self, max_size: usize) -> Self
pub fn max_pool_size(self, max_size: usize) -> Self
Set the maximum pool size
Sourcepub async fn build(self) -> Result<AgenticVerificationSystem>
pub async fn build(self) -> Result<AgenticVerificationSystem>
Build the AgenticVerificationSystem
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SystemBuilder
impl RefUnwindSafe for SystemBuilder
impl Send for SystemBuilder
impl Sync for SystemBuilder
impl Unpin for SystemBuilder
impl UnwindSafe for SystemBuilder
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