pub struct SynthesisData {
pub inputs: Vec<String>,
pub question: Option<String>,
}Expand description
Synthesis-specific frontmatter (ARCHITECTURE §2 — synthesis block).
Fields§
§inputs: Vec<String>Source pages + raw artifacts that fed this synthesis.
question: Option<String>The question the synthesis answers, if any.
Trait Implementations§
Source§impl Clone for SynthesisData
impl Clone for SynthesisData
Source§fn clone(&self) -> SynthesisData
fn clone(&self) -> SynthesisData
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 SynthesisData
impl Debug for SynthesisData
Source§impl<'de> Deserialize<'de> for SynthesisData
impl<'de> Deserialize<'de> for SynthesisData
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 SynthesisData
impl PartialEq for SynthesisData
Source§fn eq(&self, other: &SynthesisData) -> bool
fn eq(&self, other: &SynthesisData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SynthesisData
impl Serialize for SynthesisData
impl StructuralPartialEq for SynthesisData
Auto Trait Implementations§
impl Freeze for SynthesisData
impl RefUnwindSafe for SynthesisData
impl Send for SynthesisData
impl Sync for SynthesisData
impl Unpin for SynthesisData
impl UnsafeUnpin for SynthesisData
impl UnwindSafe for SynthesisData
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