pub enum ModportTfPort<'a> {
Method(Box<MethodPrototype<'a>>),
Tf(Box<TfIdentifier<'a>>),
}Variants§
Method(Box<MethodPrototype<'a>>)
Tf(Box<TfIdentifier<'a>>)
Implementations§
Source§impl<'a: 'b, 'b> ModportTfPort<'a>
impl<'a: 'b, 'b> ModportTfPort<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the ModportTfPort and its children
Trait Implementations§
Source§impl<'a> Clone for ModportTfPort<'a>
impl<'a> Clone for ModportTfPort<'a>
Source§fn clone(&self) -> ModportTfPort<'a>
fn clone(&self) -> ModportTfPort<'a>
Returns a duplicate 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<'a> Debug for ModportTfPort<'a>
impl<'a> Debug for ModportTfPort<'a>
Source§impl<'a: 'b, 'b> From<&'b ModportTfPort<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b ModportTfPort<'a>> for Node<'a, 'b>
Source§fn from(value: &'b ModportTfPort<'a>) -> Self
fn from(value: &'b ModportTfPort<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b ModportTfPort<'a>
impl<'a: 'b, 'b> IntoIterator for &'b ModportTfPort<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for ModportTfPort<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for ModportTfPort<'a>
Source§impl<'a> PartialEq for ModportTfPort<'a>
impl<'a> PartialEq for ModportTfPort<'a>
impl<'a> StructuralPartialEq for ModportTfPort<'a>
Auto Trait Implementations§
impl<'a> Freeze for ModportTfPort<'a>
impl<'a> RefUnwindSafe for ModportTfPort<'a>
impl<'a> Send for ModportTfPort<'a>
impl<'a> Sync for ModportTfPort<'a>
impl<'a> Unpin for ModportTfPort<'a>
impl<'a> UnsafeUnpin for ModportTfPort<'a>
impl<'a> UnwindSafe for ModportTfPort<'a>
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