pub enum SynthError {
SynthesisFailed {
stdout: String,
stderr: String,
},
LatchingWriteToSignal(Vec<String>),
ImplicitlyDeclared(Vec<String>),
DuplicateModule(Vec<String>),
IOError(Error),
WireHasNoDriver(Vec<String>),
MissingModule(Vec<String>),
}
Variants§
SynthesisFailed
LatchingWriteToSignal(Vec<String>)
ImplicitlyDeclared(Vec<String>)
DuplicateModule(Vec<String>)
IOError(Error)
WireHasNoDriver(Vec<String>)
MissingModule(Vec<String>)
Trait Implementations§
Source§impl Debug for SynthError
impl Debug for SynthError
Auto Trait Implementations§
impl Freeze for SynthError
impl !RefUnwindSafe for SynthError
impl Send for SynthError
impl Sync for SynthError
impl Unpin for SynthError
impl !UnwindSafe for SynthError
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