pub struct Architecture1 {
pub edges: Vec<Edge>,
pub family: Option<Box<Family>>,
pub nodes: Vec<Node>,
}Fields§
§edges: Vec<Edge>A list of all computational edges in the instruction set architecture.
family: Option<Box<Family>>The architecture family. The nodes and edges conform to this family.
nodes: Vec<Node>A list of all computational nodes in the instruction set architecture.
Implementations§
Trait Implementations§
source§impl Clone for Architecture1
impl Clone for Architecture1
source§fn clone(&self) -> Architecture1
fn clone(&self) -> Architecture1
Returns a copy 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 Architecture1
impl Debug for Architecture1
source§impl Default for Architecture1
impl Default for Architecture1
source§fn default() -> Architecture1
fn default() -> Architecture1
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Architecture1
impl<'de> Deserialize<'de> for Architecture1
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<Architecture1> for Architecture1
impl PartialEq<Architecture1> for Architecture1
source§fn eq(&self, other: &Architecture1) -> bool
fn eq(&self, other: &Architecture1) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for Architecture1
impl Serialize for Architecture1
impl StructuralPartialEq for Architecture1
Auto Trait Implementations§
impl RefUnwindSafe for Architecture1
impl Send for Architecture1
impl Sync for Architecture1
impl Unpin for Architecture1
impl UnwindSafe for Architecture1
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