pub struct TestbenchIo {
pub vss: InOut<Signal>,
}
Expand description
The interface to which simulation testbenches should conform.
Fields§
§vss: InOut<Signal>
The global ground net.
Trait Implementations§
Source§impl Clone for TestbenchIo
impl Clone for TestbenchIo
Source§fn clone(&self) -> TestbenchIo
fn clone(&self) -> TestbenchIo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TestbenchIo
impl Debug for TestbenchIo
Source§impl Default for TestbenchIo
impl Default for TestbenchIo
Source§fn default() -> TestbenchIo
fn default() -> TestbenchIo
Returns the “default value” for a type. Read more
Source§impl FlatLen for TestbenchIo
impl FlatLen for TestbenchIo
Source§impl Flatten<Direction> for TestbenchIo
impl Flatten<Direction> for TestbenchIo
Source§impl HasBundleKind for TestbenchIo
impl HasBundleKind for TestbenchIo
Source§type BundleKind = TestbenchIoKind
type BundleKind = TestbenchIoKind
The Rust type of the
BundleKind
associated with this bundle.Source§fn kind(&self) -> <Self as HasBundleKind>::BundleKind
fn kind(&self) -> <Self as HasBundleKind>::BundleKind
Returns the
BundleKind
of this bundle.Source§impl HasNodeBundle for TestbenchIo
impl HasNodeBundle for TestbenchIo
Source§type NodeBundle = TestbenchIoView<NodeBundle>
type NodeBundle = TestbenchIoView<NodeBundle>
The associated node bundle.
Source§impl HasTerminalBundle for TestbenchIo
impl HasTerminalBundle for TestbenchIo
Source§type TerminalBundle = TestbenchIoView<TerminalBundle>
type TerminalBundle = TestbenchIoView<TerminalBundle>
The associated terminal bundle.
Auto Trait Implementations§
impl Freeze for TestbenchIo
impl RefUnwindSafe for TestbenchIo
impl Send for TestbenchIo
impl Sync for TestbenchIo
impl Unpin for TestbenchIo
impl UnwindSafe for TestbenchIo
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request