pub struct Logic {
pub dx: Float,
pub bits: usize,
pub fs: Float,
pub dims: Dims,
}Expand description
Logic block parameters.
Represents logic components such as decoders and control circuits with their electrical and timing characteristics.
Fields§
§dx: FloatDrive strength of the logic block
bits: usizeNumber of bits this logic block can decode
fs: FloatMaximum operating frequency in Hz
dims: DimsPhysical dimensions of the logic block
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Logic
impl<'de> Deserialize<'de> for Logic
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
impl Copy for Logic
Auto Trait Implementations§
impl Freeze for Logic
impl RefUnwindSafe for Logic
impl Send for Logic
impl Sync for Logic
impl Unpin for Logic
impl UnwindSafe for Logic
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