pub struct AbstractArrayDeclarator<'tree> {
pub span: Span,
pub declarator: Option<AbstractDeclarator<'tree>>,
pub size: Option<AbstractArrayDeclaratorSize<'tree>>,
pub children: Vec<TypeQualifier<'tree>>,
}Fields§
§span: Span§declarator: Option<AbstractDeclarator<'tree>>§size: Option<AbstractArrayDeclaratorSize<'tree>>§children: Vec<TypeQualifier<'tree>>Trait Implementations§
Source§impl<'tree> Clone for AbstractArrayDeclarator<'tree>
impl<'tree> Clone for AbstractArrayDeclarator<'tree>
Source§fn clone(&self) -> AbstractArrayDeclarator<'tree>
fn clone(&self) -> AbstractArrayDeclarator<'tree>
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<'tree> Debug for AbstractArrayDeclarator<'tree>
impl<'tree> Debug for AbstractArrayDeclarator<'tree>
Source§impl<'tree> FromNode<'tree> for AbstractArrayDeclarator<'tree>
impl<'tree> FromNode<'tree> for AbstractArrayDeclarator<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AbstractArrayDeclarator<'tree>
impl<'tree> RefUnwindSafe for AbstractArrayDeclarator<'tree>
impl<'tree> Send for AbstractArrayDeclarator<'tree>
impl<'tree> Sync for AbstractArrayDeclarator<'tree>
impl<'tree> Unpin for AbstractArrayDeclarator<'tree>
impl<'tree> UnsafeUnpin for AbstractArrayDeclarator<'tree>
impl<'tree> UnwindSafe for AbstractArrayDeclarator<'tree>
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