pub trait TextInput<'s> {
type InputType: Into<EncodeInput<'s>> + Send;
// Required method
fn into_encode_input(self) -> Vec<Self::InputType>;
}Expand description
Input text abstraction, use embed::input::TextInput or rerank::input::TextInput implementations.