pub struct Exhibit {
pub id: String,
pub file: String,
pub kind: ExhibitKind,
pub source: Option<String>,
pub description: Option<String>,
pub claims: Vec<ClaimId>,
pub body: String,
}Expand description
One figure or table, parsed from evidence/. Populated by a later task.
Fields§
§id: StringExhibit id.
file: StringSource file, relative to the artifact root.
kind: ExhibitKindFigure / table / other.
source: Option<String>Origin of the exhibit, when stated.
description: Option<String>Caption / description prose.
claims: Vec<ClaimId>Claims this exhibit supports.
body: StringRaw markdown body, verbatim.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Exhibit
impl<'de> Deserialize<'de> for Exhibit
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 StructuralPartialEq for Exhibit
Auto Trait Implementations§
impl Freeze for Exhibit
impl RefUnwindSafe for Exhibit
impl Send for Exhibit
impl Sync for Exhibit
impl Unpin for Exhibit
impl UnsafeUnpin for Exhibit
impl UnwindSafe for Exhibit
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