Trait ValidateIntegrity

Source
pub trait ValidateIntegrity {
    type Error;

    // Required method
    fn validate_integrity<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Trait for validating integrity of a component (e.g., Workspace or Crate)

Required Associated Types§

Required Methods§

Source

fn validate_integrity<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§