pub struct Port {
pub direction: PortDirection,
pub bits: Vec<BitVal>,
pub offset: usize,
pub upto: usize,
pub signed: usize,
}
Expand description
Represents a port on a module
Fields§
§direction: PortDirection
Port direction
bits: Vec<BitVal>
Bit value(s) representing the wire(s) connected to this port
offset: usize
Bit offset for mapping to HDL bit numbering
upto: usize
Whether or not HDL bit numbering is MSB-first
signed: usize
Whether or not HDL considers value signed
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Port
impl<'de> Deserialize<'de> for Port
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 Eq for Port
impl StructuralPartialEq for Port
Auto Trait Implementations§
impl Freeze for Port
impl RefUnwindSafe for Port
impl Send for Port
impl Sync for Port
impl Unpin for Port
impl UnwindSafe for Port
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