pub enum ModportSimplePort {
    Ordered(Box<ModportSimplePortOrdered>),
    Named(Box<ModportSimplePortNamed>),
}Variants§
Ordered(Box<ModportSimplePortOrdered>)
Named(Box<ModportSimplePortNamed>)
Trait Implementations§
Source§impl Clone for ModportSimplePort
 
impl Clone for ModportSimplePort
Source§fn clone(&self) -> ModportSimplePort
 
fn clone(&self) -> ModportSimplePort
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 Debug for ModportSimplePort
 
impl Debug for ModportSimplePort
Source§impl<'a> From<&'a ModportSimplePort> for RefNode<'a>
 
impl<'a> From<&'a ModportSimplePort> for RefNode<'a>
Source§fn from(x: &'a ModportSimplePort) -> RefNode<'a>
 
fn from(x: &'a ModportSimplePort) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ModportSimplePort> for RefNodes<'a>
 
impl<'a> From<&'a ModportSimplePort> for RefNodes<'a>
Source§fn from(x: &'a ModportSimplePort) -> RefNodes<'a>
 
fn from(x: &'a ModportSimplePort) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ModportSimplePort> for AnyNode
 
impl From<ModportSimplePort> for AnyNode
Source§fn from(x: ModportSimplePort) -> AnyNode
 
fn from(x: ModportSimplePort) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ModportSimplePort
 
impl<'a> IntoIterator for &'a ModportSimplePort
Source§impl PartialEq for ModportSimplePort
 
impl PartialEq for ModportSimplePort
Source§impl<'a> TryFrom<&'a ModportSimplePort> for Locate
 
impl<'a> TryFrom<&'a ModportSimplePort> for Locate
Source§impl TryFrom<AnyNode> for ModportSimplePort
 
impl TryFrom<AnyNode> for ModportSimplePort
Source§impl TryFrom<ModportSimplePort> for Locate
 
impl TryFrom<ModportSimplePort> for Locate
impl StructuralPartialEq for ModportSimplePort
Auto Trait Implementations§
impl Freeze for ModportSimplePort
impl RefUnwindSafe for ModportSimplePort
impl Send for ModportSimplePort
impl Sync for ModportSimplePort
impl Unpin for ModportSimplePort
impl UnwindSafe for ModportSimplePort
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