pub trait CalculateUnseenInputs<T> {
// Required method
fn calculate_unseen_inputs(
&self,
inputs: &[T],
expected_content_type: &ExpectedContentType,
) -> Vec<T>;
}
pub trait CalculateUnseenInputs<T> {
// Required method
fn calculate_unseen_inputs(
&self,
inputs: &[T],
expected_content_type: &ExpectedContentType,
) -> Vec<T>;
}