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
sourceimpl Debug for SynthError
impl Debug for SynthError
Auto Trait Implementations
impl !RefUnwindSafe for SynthError
impl Send for SynthError
impl Sync for SynthError
impl Unpin for SynthError
impl !UnwindSafe for SynthError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more