pub struct DesignResult {
pub features: Vec<FeatureProposal>,
pub components: Vec<ComponentProposal>,
pub graph: Option<Graph>,
}Expand description
Result from parsing an LLM graph design response.
Fields§
§features: Vec<FeatureProposal>§components: Vec<ComponentProposal>§graph: Option<Graph>Trait Implementations§
Source§impl Clone for DesignResult
impl Clone for DesignResult
Source§fn clone(&self) -> DesignResult
fn clone(&self) -> DesignResult
Returns a duplicate of the value. Read more
1.0.0 · 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 DesignResult
impl Debug for DesignResult
Source§impl<'de> Deserialize<'de> for DesignResult
impl<'de> Deserialize<'de> for DesignResult
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
Auto Trait Implementations§
impl Freeze for DesignResult
impl RefUnwindSafe for DesignResult
impl Send for DesignResult
impl Sync for DesignResult
impl Unpin for DesignResult
impl UnsafeUnpin for DesignResult
impl UnwindSafe for DesignResult
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