Enum libreda_db::netlist::direction::Direction
source · pub enum Direction {
None,
Input,
Output,
InOut,
Clock,
Supply,
Ground,
}Expand description
Signal type for pins.
Variants§
None
No direction specified.
Input
Data input.
Output
Data output.
InOut
Input and output.
Clock
Clock input.
Supply
Power VDD.
Ground
Power ground.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Direction
impl<'de> Deserialize<'de> for Direction
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