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