pub struct CaseOutput {
pub case_id: String,
pub title: String,
pub summary: String,
pub nodes: Vec<NodeOutput>,
pub relationships: Vec<RelOutput>,
pub sources: Vec<String>,
}Expand description
JSON output for a complete case file.
Fields§
§case_id: String§title: String§summary: String§nodes: Vec<NodeOutput>§relationships: Vec<RelOutput>§sources: Vec<String>Trait Implementations§
Source§impl Debug for CaseOutput
impl Debug for CaseOutput
Auto Trait Implementations§
impl Freeze for CaseOutput
impl RefUnwindSafe for CaseOutput
impl Send for CaseOutput
impl Sync for CaseOutput
impl Unpin for CaseOutput
impl UnsafeUnpin for CaseOutput
impl UnwindSafe for CaseOutput
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