pub trait IsCheckedUseCase: Send + Sync {
// Required method
fn execute(
&self,
input: ElementStateInput,
) -> Result<IsCheckedOutput, SessionError>;
}pub trait IsCheckedUseCase: Send + Sync {
// Required method
fn execute(
&self,
input: ElementStateInput,
) -> Result<IsCheckedOutput, SessionError>;
}