pub trait Extractor {
// Required method
fn extract(&self, path: &str, blob_id: &str, bytes: &[u8]) -> FactSet;
}Expand description
Turns one source blob into the nodes and edges derived from it.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".