pub struct TargetStructure {
pub description: String,
}Expand description
Minimal structural hint about the target: free text, deliberately.
chematic-crystal is now published and, with the chematic_crystal
feature enabled, crate::to_mikiwame_structure can convert a real
chematic_crystal::PeriodicStructure into something mikiwame::analyze
consumes (Phase 16) – but that conversion is a standalone,
caller-driven bridge, not a field here. Giving TargetStructure itself
a geometry field would need real Planner/report-level wiring
decisions (how a report should represent per-target structural
diagnostics) that Phase 16 deliberately left out of scope; see
docs/integration.md. gugen does not implement its own crystal-
structure representation either way (AGENTS.md §5).
Fields§
§description: StringTrait Implementations§
Source§impl Clone for TargetStructure
impl Clone for TargetStructure
Source§fn clone(&self) -> TargetStructure
fn clone(&self) -> TargetStructure
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 TargetStructure
impl Debug for TargetStructure
Source§impl<'de> Deserialize<'de> for TargetStructure
impl<'de> Deserialize<'de> for TargetStructure
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 TargetStructure
impl PartialEq for TargetStructure
Source§impl Serialize for TargetStructure
impl Serialize for TargetStructure
impl StructuralPartialEq for TargetStructure
Auto Trait Implementations§
impl Freeze for TargetStructure
impl RefUnwindSafe for TargetStructure
impl Send for TargetStructure
impl Sync for TargetStructure
impl Unpin for TargetStructure
impl UnsafeUnpin for TargetStructure
impl UnwindSafe for TargetStructure
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