pub struct SemantifyResult {
pub proposals: Vec<SemanticProposal>,
pub graph: Option<Graph>,
}Expand description
Result from parsing LLM semantify response.
Fields§
§proposals: Vec<SemanticProposal>§graph: Option<Graph>Optional: the full transformed graph
Trait Implementations§
Source§impl Clone for SemantifyResult
impl Clone for SemantifyResult
Source§fn clone(&self) -> SemantifyResult
fn clone(&self) -> SemantifyResult
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 SemantifyResult
impl Debug for SemantifyResult
Source§impl<'de> Deserialize<'de> for SemantifyResult
impl<'de> Deserialize<'de> for SemantifyResult
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 SemantifyResult
impl RefUnwindSafe for SemantifyResult
impl Send for SemantifyResult
impl Sync for SemantifyResult
impl Unpin for SemantifyResult
impl UnsafeUnpin for SemantifyResult
impl UnwindSafe for SemantifyResult
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