pub trait ValidateIntegrity {
type Error;
// Required method
fn validate_integrity(&self) -> Result<(), Self::Error>;
}Expand description
Trait for validating integrity of a component (e.g., Workspace or Crate)
pub trait ValidateIntegrity {
type Error;
// Required method
fn validate_integrity(&self) -> Result<(), Self::Error>;
}Trait for validating integrity of a component (e.g., Workspace or Crate)