1 2 3 4 5 6 7 8 9 10
pub mod attribute; pub mod compliance; pub mod expected_state; use crate::error::RegentError; pub use expected_state::ExpectedState; pub trait Check { fn check(&self) -> Result<(), RegentError>; }