Struct gml_parser::gml::Gml
source · pub struct Gml<'a> {
pub directed: bool,
pub nodes: Vec<Node<'a>>,
pub edges: Vec<Edge<'a>>,
pub other: HashMap<Cow<'a, str>, Value<'a>>,
}
Expand description
A GML graph.
Fields§
§directed: bool
§nodes: Vec<Node<'a>>
§edges: Vec<Edge<'a>>
§other: HashMap<Cow<'a, str>, Value<'a>>
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for Gml<'a>
Auto Trait Implementations§
impl<'a> Freeze for Gml<'a>
impl<'a> RefUnwindSafe for Gml<'a>
impl<'a> Send for Gml<'a>
impl<'a> Sync for Gml<'a>
impl<'a> Unpin for Gml<'a>
impl<'a> UnwindSafe for Gml<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more