pub struct StructuralVerilogWriter {}Expand description
Verilog netlist writer.
Implementations§
Trait Implementations§
Source§impl NetlistWriter for StructuralVerilogWriter
impl NetlistWriter for StructuralVerilogWriter
Source§type Error = VerilogWriteError
type Error = VerilogWriteError
Type of error that could happen while writing a netlist.
Source§fn write_netlist<W: Write, N: NetlistBase>(
&self,
writer: &mut W,
netlist: &N,
) -> Result<(), Self::Error>
fn write_netlist<W: Write, N: NetlistBase>( &self, writer: &mut W, netlist: &N, ) -> Result<(), Self::Error>
Write the netlist data structure to a byte stream.
Auto Trait Implementations§
impl Freeze for StructuralVerilogWriter
impl RefUnwindSafe for StructuralVerilogWriter
impl Send for StructuralVerilogWriter
impl Sync for StructuralVerilogWriter
impl Unpin for StructuralVerilogWriter
impl UnwindSafe for StructuralVerilogWriter
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