pub struct GraphView {
pub view_id: String,
pub graph_style: MemoryGraphStyle,
pub source_root_id: String,
pub included_node_ids: Vec<String>,
pub included_edge_ids: Vec<String>,
pub view_type: GraphViewType,
pub topological_order: Vec<String>,
pub transitive_reduction_edges: Vec<GraphEdgeRef>,
pub omitted_edges: Vec<GraphEdgeRef>,
pub reason_edges_omitted: Vec<String>,
}Expand description
Rebuildable graph view artifact.
Fields§
§view_id: String§graph_style: MemoryGraphStyle§source_root_id: String§included_node_ids: Vec<String>§included_edge_ids: Vec<String>§view_type: GraphViewType§topological_order: Vec<String>§transitive_reduction_edges: Vec<GraphEdgeRef>§omitted_edges: Vec<GraphEdgeRef>§reason_edges_omitted: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphView
impl<'de> Deserialize<'de> for GraphView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GraphView
impl StructuralPartialEq for GraphView
Auto Trait Implementations§
impl Freeze for GraphView
impl RefUnwindSafe for GraphView
impl Send for GraphView
impl Sync for GraphView
impl Unpin for GraphView
impl UnsafeUnpin for GraphView
impl UnwindSafe for GraphView
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