pub struct PreprocessorIncludeData {
pub path: Node<PathData>,
}
Expand description
An #include name annotation.
Fields§
§path: Node<PathData>
Include path
Trait Implementations§
Source§impl Clone for PreprocessorIncludeData
impl Clone for PreprocessorIncludeData
Source§fn clone(&self) -> PreprocessorIncludeData
fn clone(&self) -> PreprocessorIncludeData
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 PreprocessorIncludeData
impl Debug for PreprocessorIncludeData
Source§impl From<Node<PreprocessorIncludeData>> for PreprocessorIncludeData
impl From<Node<PreprocessorIncludeData>> for PreprocessorIncludeData
Source§fn from(node: Node<PreprocessorIncludeData>) -> PreprocessorIncludeData
fn from(node: Node<PreprocessorIncludeData>) -> PreprocessorIncludeData
Converts to this type from the input type.
Source§impl NodeContent for PreprocessorIncludeData
impl NodeContent for PreprocessorIncludeData
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 PreprocessorIncludeData
impl NodeContentDisplay for PreprocessorIncludeData
Source§impl PartialEq for PreprocessorIncludeData
impl PartialEq for PreprocessorIncludeData
impl Eq for PreprocessorIncludeData
impl StructuralPartialEq for PreprocessorIncludeData
Auto Trait Implementations§
impl Freeze for PreprocessorIncludeData
impl RefUnwindSafe for PreprocessorIncludeData
impl Send for PreprocessorIncludeData
impl Sync for PreprocessorIncludeData
impl Unpin for PreprocessorIncludeData
impl UnwindSafe for PreprocessorIncludeData
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