pub trait Chunker {
type ErrorType: Error;
// Required method
fn generate_chunks(&self, raw_text: &str) -> Result<Chunks, Self::ErrorType>;
}pub trait Chunker {
type ErrorType: Error;
// Required method
fn generate_chunks(&self, raw_text: &str) -> Result<Chunks, Self::ErrorType>;
}