pub struct AgenticVerificationSystem { /* private fields */ }Expand description
Main agentic verification system with multi-agent consensus
Implementations§
Source§impl AgenticVerificationSystem
impl AgenticVerificationSystem
Sourcepub fn builder() -> SystemBuilder
pub fn builder() -> SystemBuilder
Create a new system builder
Sourcepub async fn scale_pool(&self, target_size: usize) -> Result<()>
pub async fn scale_pool(&self, target_size: usize) -> Result<()>
Scale the agent pool to target size
Sourcepub async fn verify_with_consensus(
&self,
signature: Signature,
message: &[u8],
public_key: &VerifyingKey,
) -> Result<ConsensusResult>
pub async fn verify_with_consensus( &self, signature: Signature, message: &[u8], public_key: &VerifyingKey, ) -> Result<ConsensusResult>
Verify signature with multi-agent consensus
Sourcepub async fn health_check(&self) -> Result<HealthCheck>
pub async fn health_check(&self) -> Result<HealthCheck>
Perform system health check
Sourcepub async fn health_status(&self) -> HealthStatus
pub async fn health_status(&self) -> HealthStatus
Get current health status
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AgenticVerificationSystem
impl !RefUnwindSafe for AgenticVerificationSystem
impl Send for AgenticVerificationSystem
impl Sync for AgenticVerificationSystem
impl Unpin for AgenticVerificationSystem
impl !UnwindSafe for AgenticVerificationSystem
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