We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 763d9f7 + d492220 commit 4dbb91bCopy full SHA for 4dbb91b
1 file changed
crates/wac-graph/src/graph.rs
@@ -415,22 +415,6 @@ impl fmt::Debug for Edge {
415
}
416
417
418
-/// Represents information about a node in a composition graph.
419
-pub struct NodeInfo<'a> {
420
- /// The item kind of the node.
421
- pub kind: ItemKind,
422
- /// The optional name of the node.
423
- pub name: Option<&'a str>,
424
- /// The package associated with the node.
425
- pub package: Option<PackageId>,
426
- /// The export name of the node.
427
- ///
428
- /// If the node is not exported, this field will be `None`.
429
- pub export: Option<&'a str>,
430
- /// Whether or not the node is from a type definition.
431
- pub definition: bool,
432
-}
433
-
434
/// Represents a composition graph.
435
///
436
/// A composition graph is a directed acyclic graph (DAG) that represents a WebAssembly composition.
0 commit comments