pub enum Command {
Show 61 variants
LineBreak,
Comment(String),
CreateClock(CreateClock),
CreateGeneratedClock(CreateGeneratedClock),
CreateVoltageArea(CreateVoltageArea),
CurrentInstance(CurrentInstance),
GroupPath(GroupPath),
Set(Set),
SetCaseAnalysis(SetCaseAnalysis),
SetClockGatingCheck(SetClockGatingCheck),
SetClockGroups(SetClockGroups),
SetClockLatency(SetClockLatency),
SetClockSense(SetClockSense),
SetClockTransition(SetClockTransition),
SetClockUncertainty(SetClockUncertainty),
SetDataCheck(SetDataCheck),
SetDisableTiming(SetDisableTiming),
SetDrive(SetDrive),
SetDrivingCell(SetDrivingCell),
SetFalsePath(SetFalsePath),
SetFanoutLoad(SetFanoutLoad),
SetIdealLatency(SetIdealLatency),
SetIdealNetwork(SetIdealNetwork),
SetIdealTransition(SetIdealTransition),
SetInputDelay(SetInputDelay),
SetInputTransition(SetInputTransition),
SetLevelShifterStrategy(SetLevelShifterStrategy),
SetLevelShifterThreshold(SetLevelShifterThreshold),
SetLoad(SetLoad),
SetLogicDc(SetLogicDc),
SetLogicOne(SetLogicOne),
SetLogicZero(SetLogicZero),
SetMaxArea(SetMaxArea),
SetMaxCapacitance(SetMaxCapacitance),
SetMaxDelay(SetMaxDelay),
SetMaxDynamicPower(SetMaxDynamicPower),
SetMaxFanout(SetMaxFanout),
SetMaxLeakagePower(SetMaxLeakagePower),
SetMaxTimeBorrow(SetMaxTimeBorrow),
SetMaxTransition(SetMaxTransition),
SetMinCapacitance(SetMinCapacitance),
SetMinDelay(SetMinDelay),
SetMinPorosity(SetMinPorosity),
SetMinPulseWidth(SetMinPulseWidth),
SetMulticyclePath(SetMulticyclePath),
SetOperatingConditions(SetOperatingConditions),
SetOutputDelay(SetOutputDelay),
SetPortFanoutNumber(SetPortFanoutNumber),
SetPropagatedClock(SetPropagatedClock),
SetResistance(SetResistance),
SetSense(SetSense),
SetTimingDerate(SetTimingDerate),
SetUnits(SetUnits),
SetSdcVersion(SetSdcVersion),
SetVoltage(SetVoltage),
SetWireLoadMinBlockSize(SetWireLoadMinBlockSize),
SetWireLoadMode(SetWireLoadMode),
SetWireLoadModel(SetWireLoadModel),
SetWireLoadSelectionGroup(SetWireLoadSelectionGroup),
Unknown(String),
Whitespace,
}Expand description
Enumeration on sdc command
Variants§
LineBreak
Comment(String)
CreateClock(CreateClock)
CreateGeneratedClock(CreateGeneratedClock)
CreateVoltageArea(CreateVoltageArea)
CurrentInstance(CurrentInstance)
GroupPath(GroupPath)
Set(Set)
SetCaseAnalysis(SetCaseAnalysis)
SetClockGatingCheck(SetClockGatingCheck)
SetClockGroups(SetClockGroups)
SetClockLatency(SetClockLatency)
SetClockSense(SetClockSense)
SetClockTransition(SetClockTransition)
SetClockUncertainty(SetClockUncertainty)
SetDataCheck(SetDataCheck)
SetDisableTiming(SetDisableTiming)
SetDrive(SetDrive)
SetDrivingCell(SetDrivingCell)
SetFalsePath(SetFalsePath)
SetFanoutLoad(SetFanoutLoad)
SetIdealLatency(SetIdealLatency)
SetIdealNetwork(SetIdealNetwork)
SetIdealTransition(SetIdealTransition)
SetInputDelay(SetInputDelay)
SetInputTransition(SetInputTransition)
SetLevelShifterStrategy(SetLevelShifterStrategy)
SetLevelShifterThreshold(SetLevelShifterThreshold)
SetLoad(SetLoad)
SetLogicDc(SetLogicDc)
SetLogicOne(SetLogicOne)
SetLogicZero(SetLogicZero)
SetMaxArea(SetMaxArea)
SetMaxCapacitance(SetMaxCapacitance)
SetMaxDelay(SetMaxDelay)
SetMaxDynamicPower(SetMaxDynamicPower)
SetMaxFanout(SetMaxFanout)
SetMaxLeakagePower(SetMaxLeakagePower)
SetMaxTimeBorrow(SetMaxTimeBorrow)
SetMaxTransition(SetMaxTransition)
SetMinCapacitance(SetMinCapacitance)
SetMinDelay(SetMinDelay)
SetMinPorosity(SetMinPorosity)
SetMinPulseWidth(SetMinPulseWidth)
SetMulticyclePath(SetMulticyclePath)
SetOperatingConditions(SetOperatingConditions)
SetOutputDelay(SetOutputDelay)
SetPortFanoutNumber(SetPortFanoutNumber)
SetPropagatedClock(SetPropagatedClock)
SetResistance(SetResistance)
SetSense(SetSense)
SetTimingDerate(SetTimingDerate)
SetUnits(SetUnits)
SetSdcVersion(SetSdcVersion)
SetVoltage(SetVoltage)
SetWireLoadMinBlockSize(SetWireLoadMinBlockSize)
SetWireLoadMode(SetWireLoadMode)
SetWireLoadModel(SetWireLoadModel)
SetWireLoadSelectionGroup(SetWireLoadSelectionGroup)
Unknown(String)
Any unknown command including vendor extensions
Whitespace
Trait Implementations§
impl StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more