pub struct CodebaseViewSection {
pub id: String,
pub title: String,
pub narrative: String,
pub confidence: f64,
pub node_ids: Vec<String>,
pub edge_ids: Vec<String>,
pub evidence_ids: Vec<String>,
pub diagnostics: Vec<String>,
}Expand description
Narrative section derived from graph facts and evidence.
Fields§
§id: String§title: String§narrative: String§confidence: f64§node_ids: Vec<String>§edge_ids: Vec<String>§evidence_ids: Vec<String>§diagnostics: Vec<String>Trait Implementations§
Source§impl Clone for CodebaseViewSection
impl Clone for CodebaseViewSection
Source§fn clone(&self) -> CodebaseViewSection
fn clone(&self) -> CodebaseViewSection
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 CodebaseViewSection
impl Debug for CodebaseViewSection
Source§impl<'de> Deserialize<'de> for CodebaseViewSection
impl<'de> Deserialize<'de> for CodebaseViewSection
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
Source§impl PartialEq for CodebaseViewSection
impl PartialEq for CodebaseViewSection
Source§impl Serialize for CodebaseViewSection
impl Serialize for CodebaseViewSection
impl StructuralPartialEq for CodebaseViewSection
Auto Trait Implementations§
impl Freeze for CodebaseViewSection
impl RefUnwindSafe for CodebaseViewSection
impl Send for CodebaseViewSection
impl Sync for CodebaseViewSection
impl Unpin for CodebaseViewSection
impl UnsafeUnpin for CodebaseViewSection
impl UnwindSafe for CodebaseViewSection
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