pub struct SingleDeclarationNoTypeData {
pub ident: Node<ArrayedIdentifierData>,
pub initializer: Option<Node<InitializerData>>,
}
Expand description
A single declaration with implicit, already-defined type.
Fields§
§ident: Node<ArrayedIdentifierData>
Declared identifier
initializer: Option<Node<InitializerData>>
Initializer expression
Trait Implementations§
Source§impl Clone for SingleDeclarationNoTypeData
impl Clone for SingleDeclarationNoTypeData
Source§fn clone(&self) -> SingleDeclarationNoTypeData
fn clone(&self) -> SingleDeclarationNoTypeData
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 SingleDeclarationNoTypeData
impl Debug for SingleDeclarationNoTypeData
Source§impl From<Node<SingleDeclarationNoTypeData>> for SingleDeclarationNoTypeData
impl From<Node<SingleDeclarationNoTypeData>> for SingleDeclarationNoTypeData
Source§fn from(node: Node<SingleDeclarationNoTypeData>) -> SingleDeclarationNoTypeData
fn from(node: Node<SingleDeclarationNoTypeData>) -> SingleDeclarationNoTypeData
Converts to this type from the input type.
Source§impl NodeContent for SingleDeclarationNoTypeData
impl NodeContent for SingleDeclarationNoTypeData
Source§fn into_node<T>(self) -> Node<T>where
T: From<Self> + NodeContent,
fn into_node<T>(self) -> Node<T>where
T: From<Self> + NodeContent,
Convert the contents into a node
Source§fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
Add span information to a syntax node
Source§impl NodeContentDisplay for SingleDeclarationNoTypeData
impl NodeContentDisplay for SingleDeclarationNoTypeData
impl StructuralPartialEq for SingleDeclarationNoTypeData
Auto Trait Implementations§
impl Freeze for SingleDeclarationNoTypeData
impl RefUnwindSafe for SingleDeclarationNoTypeData
impl Send for SingleDeclarationNoTypeData
impl Sync for SingleDeclarationNoTypeData
impl Unpin for SingleDeclarationNoTypeData
impl UnwindSafe for SingleDeclarationNoTypeData
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