pub struct InputGraphMacrocell {
pub name: String,
pub requested_loc: Option<RequestedLocation>,
pub io_bits: Option<InputGraphIOBuf>,
pub reg_bits: Option<InputGraphReg>,
pub xor_bits: Option<InputGraphXor>,
pub io_feedback_used: bool,
pub reg_feedback_used: bool,
pub xor_feedback_used: bool,
}
Fields§
§name: String
§requested_loc: Option<RequestedLocation>
§io_bits: Option<InputGraphIOBuf>
§reg_bits: Option<InputGraphReg>
§xor_bits: Option<InputGraphXor>
§io_feedback_used: bool
§reg_feedback_used: bool
§xor_feedback_used: bool
Implementations§
Source§impl InputGraphMacrocell
impl InputGraphMacrocell
pub fn get_type(&self) -> InputGraphMacrocellType
Trait Implementations§
Source§impl Clone for InputGraphMacrocell
impl Clone for InputGraphMacrocell
Source§fn clone(&self) -> InputGraphMacrocell
fn clone(&self) -> InputGraphMacrocell
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 InputGraphMacrocell
impl Debug for InputGraphMacrocell
Source§impl<'de> Deserialize<'de> for InputGraphMacrocell
impl<'de> Deserialize<'de> for InputGraphMacrocell
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 Hash for InputGraphMacrocell
impl Hash for InputGraphMacrocell
Source§impl PartialEq for InputGraphMacrocell
impl PartialEq for InputGraphMacrocell
Source§impl Serialize for InputGraphMacrocell
impl Serialize for InputGraphMacrocell
impl Eq for InputGraphMacrocell
impl StructuralPartialEq for InputGraphMacrocell
Auto Trait Implementations§
impl Freeze for InputGraphMacrocell
impl RefUnwindSafe for InputGraphMacrocell
impl Send for InputGraphMacrocell
impl Sync for InputGraphMacrocell
impl Unpin for InputGraphMacrocell
impl UnwindSafe for InputGraphMacrocell
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