pub struct LetDeclaration {
    pub nodes: (Keyword, LetIdentifier, Option<Paren<Option<LetPortList>>>, Symbol, Expression, Symbol),
}Fields§
§nodes: (Keyword, LetIdentifier, Option<Paren<Option<LetPortList>>>, Symbol, Expression, Symbol)Trait Implementations§
Source§impl Clone for LetDeclaration
 
impl Clone for LetDeclaration
Source§fn clone(&self) -> LetDeclaration
 
fn clone(&self) -> LetDeclaration
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 LetDeclaration
 
impl Debug for LetDeclaration
Source§impl<'a> From<&'a LetDeclaration> for RefNode<'a>
 
impl<'a> From<&'a LetDeclaration> for RefNode<'a>
Source§fn from(x: &'a LetDeclaration) -> RefNode<'a>
 
fn from(x: &'a LetDeclaration) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a LetDeclaration> for RefNodes<'a>
 
impl<'a> From<&'a LetDeclaration> for RefNodes<'a>
Source§fn from(x: &'a LetDeclaration) -> RefNodes<'a>
 
fn from(x: &'a LetDeclaration) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<LetDeclaration> for AnyNode
 
impl From<LetDeclaration> for AnyNode
Source§fn from(x: LetDeclaration) -> AnyNode
 
fn from(x: LetDeclaration) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a LetDeclaration
 
impl<'a> IntoIterator for &'a LetDeclaration
Source§impl PartialEq for LetDeclaration
 
impl PartialEq for LetDeclaration
Source§impl<'a> TryFrom<&'a LetDeclaration> for Locate
 
impl<'a> TryFrom<&'a LetDeclaration> for Locate
Source§impl TryFrom<AnyNode> for LetDeclaration
 
impl TryFrom<AnyNode> for LetDeclaration
Source§impl TryFrom<LetDeclaration> for Locate
 
impl TryFrom<LetDeclaration> for Locate
impl StructuralPartialEq for LetDeclaration
Auto Trait Implementations§
impl Freeze for LetDeclaration
impl RefUnwindSafe for LetDeclaration
impl Send for LetDeclaration
impl Sync for LetDeclaration
impl Unpin for LetDeclaration
impl UnwindSafe for LetDeclaration
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