pub trait IntoGraph {
// Required method
fn into_graph(self) -> Result<GraphDocument>;
}
Expand description
Trait to convert an OBO document into a complete OBO graph document.
Required Methods§
fn into_graph(self) -> Result<GraphDocument>
Implementations on Foreign Types§
Source§impl IntoGraph for OboDoc
impl IntoGraph for OboDoc
Source§fn into_graph(self) -> Result<GraphDocument>
fn into_graph(self) -> Result<GraphDocument>
Available on crate feature
obo
only.