pub struct ProtobufGraphFacts {
pub nodes: Vec<Node>,
pub edges: Vec<Edge>,
pub evidence: Vec<Evidence>,
}Expand description
Graph facts assembled from protobuf files and exact generated gRPC markers.
Fields§
§nodes: Vec<Node>RPC methods, generated symbols, messages, artifacts, and repositories.
edges: Vec<Edge>Exact containment, remote call, and implementation relationships.
evidence: Vec<Evidence>Direct protobuf and generated-source evidence.
Trait Implementations§
Source§impl Clone for ProtobufGraphFacts
impl Clone for ProtobufGraphFacts
Source§fn clone(&self) -> ProtobufGraphFacts
fn clone(&self) -> ProtobufGraphFacts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProtobufGraphFacts
impl Debug for ProtobufGraphFacts
Source§impl Default for ProtobufGraphFacts
impl Default for ProtobufGraphFacts
Source§fn default() -> ProtobufGraphFacts
fn default() -> ProtobufGraphFacts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProtobufGraphFacts
impl RefUnwindSafe for ProtobufGraphFacts
impl Send for ProtobufGraphFacts
impl Sync for ProtobufGraphFacts
impl Unpin for ProtobufGraphFacts
impl UnsafeUnpin for ProtobufGraphFacts
impl UnwindSafe for ProtobufGraphFacts
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