pub struct Schematic {
pub schema_version: String,
pub id: String,
pub name: String,
pub description: Option<String>,
pub generated_at: Option<DateTime<Utc>>,
pub nodes: Vec<Node>,
pub edges: Vec<Edge>,
}Expand description
The Static Analysis View of a Circuit.
Schematic is the graph representation extracted from the Axon Builder.
It is used for visualization, documentation, and verification.
Fields§
§schema_version: String스키마 버전 (호환성 체크용)
id: StringCircuit 고유 식별자
name: StringCircuit 이름
description: Option<String>설명
generated_at: Option<DateTime<Utc>>생성 시각
nodes: Vec<Node>노드 목록
edges: Vec<Edge>엣지 목록
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Schematic
impl<'de> Deserialize<'de> for Schematic
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 Schematic
impl RefUnwindSafe for Schematic
impl Send for Schematic
impl Sync for Schematic
impl Unpin for Schematic
impl UnsafeUnpin for Schematic
impl UnwindSafe for Schematic
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