Enum rust_hdl::prelude::SynthError
source · pub enum SynthError {
SynthesisFailed {
stdout: String,
stderr: String,
},
LatchingWriteToSignal(Vec<String, Global>),
ImplicitlyDeclared(Vec<String, Global>),
DuplicateModule(Vec<String, Global>),
IOError(Error),
WireHasNoDriver(Vec<String, Global>),
MissingModule(Vec<String, Global>),
}
Variants§
SynthesisFailed
LatchingWriteToSignal(Vec<String, Global>)
ImplicitlyDeclared(Vec<String, Global>)
DuplicateModule(Vec<String, Global>)
IOError(Error)
WireHasNoDriver(Vec<String, Global>)
MissingModule(Vec<String, Global>)
Trait Implementations§
source§impl Debug for SynthError
impl Debug for SynthError
source§impl From<Error> for SynthError
impl From<Error> for SynthError
source§fn from(x: Error) -> SynthError
fn from(x: Error) -> SynthError
Converts to this type from the input type.