Trait Extract

Source
pub trait Extract: Sized {
    // Required method
    fn extract(text: &str) -> Vec<Self>;
}
Expand description

trending information extraction interface the input text is the raw HTML text from the requesting response

Required Methods§

Source

fn extract(text: &str) -> Vec<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§