pub enum NetPortHeaderOrInterfacePortHeader {
    NetPortHeader(Box<NetPortHeader>),
    InterfacePortHeader(Box<InterfacePortHeader>),
}Variants§
NetPortHeader(Box<NetPortHeader>)
InterfacePortHeader(Box<InterfacePortHeader>)
Trait Implementations§
Source§impl Clone for NetPortHeaderOrInterfacePortHeader
 
impl Clone for NetPortHeaderOrInterfacePortHeader
Source§fn clone(&self) -> NetPortHeaderOrInterfacePortHeader
 
fn clone(&self) -> NetPortHeaderOrInterfacePortHeader
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> From<&'a NetPortHeaderOrInterfacePortHeader> for RefNode<'a>
 
impl<'a> From<&'a NetPortHeaderOrInterfacePortHeader> for RefNode<'a>
Source§fn from(x: &'a NetPortHeaderOrInterfacePortHeader) -> RefNode<'a>
 
fn from(x: &'a NetPortHeaderOrInterfacePortHeader) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a NetPortHeaderOrInterfacePortHeader> for RefNodes<'a>
 
impl<'a> From<&'a NetPortHeaderOrInterfacePortHeader> for RefNodes<'a>
Source§fn from(x: &'a NetPortHeaderOrInterfacePortHeader) -> RefNodes<'a>
 
fn from(x: &'a NetPortHeaderOrInterfacePortHeader) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<NetPortHeaderOrInterfacePortHeader> for AnyNode
 
impl From<NetPortHeaderOrInterfacePortHeader> for AnyNode
Source§fn from(x: NetPortHeaderOrInterfacePortHeader) -> AnyNode
 
fn from(x: NetPortHeaderOrInterfacePortHeader) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a NetPortHeaderOrInterfacePortHeader
 
impl<'a> IntoIterator for &'a NetPortHeaderOrInterfacePortHeader
Source§impl<'a> Node<'a> for NetPortHeaderOrInterfacePortHeader
 
impl<'a> Node<'a> for NetPortHeaderOrInterfacePortHeader
Source§impl PartialEq for NetPortHeaderOrInterfacePortHeader
 
impl PartialEq for NetPortHeaderOrInterfacePortHeader
Source§fn eq(&self, other: &NetPortHeaderOrInterfacePortHeader) -> bool
 
fn eq(&self, other: &NetPortHeaderOrInterfacePortHeader) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a NetPortHeaderOrInterfacePortHeader> for Locate
 
impl<'a> TryFrom<&'a NetPortHeaderOrInterfacePortHeader> for Locate
impl StructuralPartialEq for NetPortHeaderOrInterfacePortHeader
Auto Trait Implementations§
impl Freeze for NetPortHeaderOrInterfacePortHeader
impl RefUnwindSafe for NetPortHeaderOrInterfacePortHeader
impl Send for NetPortHeaderOrInterfacePortHeader
impl Sync for NetPortHeaderOrInterfacePortHeader
impl Unpin for NetPortHeaderOrInterfacePortHeader
impl UnwindSafe for NetPortHeaderOrInterfacePortHeader
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