pub struct BackendConf {
pub synthesis_mode: bool,
pub enable_verification: bool,
pub flat_assign: bool,
pub emit_primitive_extmodules: bool,
}Expand description
Configuration information for the backends.
Fields§
§synthesis_mode: boolEnables synthesis mode.
enable_verification: boolEnables verification checks.
flat_assign: boolUse flat (ANF) assignments for guards instead of deep expression trees.
emit_primitive_extmodules: bool[FIRRTL backend only] Emit extmodule declarations for primtives for use with SystemVerilog implementations
Trait Implementations§
Source§impl Default for BackendConf
impl Default for BackendConf
Source§fn default() -> BackendConf
fn default() -> BackendConf
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BackendConf
impl RefUnwindSafe for BackendConf
impl Send for BackendConf
impl Sync for BackendConf
impl Unpin for BackendConf
impl UnwindSafe for BackendConf
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> 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