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