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<GraphView, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GraphView, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GraphView
Source§impl Serialize for GraphView
impl Serialize for GraphView
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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