Struct glsl_lang::ast::FunctionPrototypeData
source · [−]pub struct FunctionPrototypeData {
pub ty: Node<FullySpecifiedTypeData>,
pub name: Node<IdentifierData>,
pub parameters: Vec<Node<FunctionParameterDeclarationData>, Global>,
}
Expand description
Function prototype.
Fields
ty: Node<FullySpecifiedTypeData>
Return type
name: Node<IdentifierData>
Function name
parameters: Vec<Node<FunctionParameterDeclarationData>, Global>
Function parameters
Trait Implementations
sourceimpl Clone for FunctionPrototypeData
impl Clone for FunctionPrototypeData
sourcefn clone(&self) -> FunctionPrototypeData
fn clone(&self) -> FunctionPrototypeData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FunctionPrototypeData
impl Debug for FunctionPrototypeData
sourceimpl From<Node<FunctionPrototypeData>> for FunctionPrototypeData
impl From<Node<FunctionPrototypeData>> for FunctionPrototypeData
sourcefn from(node: Node<FunctionPrototypeData>) -> FunctionPrototypeData
fn from(node: Node<FunctionPrototypeData>) -> FunctionPrototypeData
Converts to this type from the input type.
sourceimpl NodeContent for FunctionPrototypeData
impl NodeContent for FunctionPrototypeData
sourcefn 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
sourcefn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
Add span information to a syntax node
sourceimpl NodeContentDisplay for FunctionPrototypeData
impl NodeContentDisplay for FunctionPrototypeData
sourceimpl PartialEq<FunctionPrototypeData> for FunctionPrototypeData
impl PartialEq<FunctionPrototypeData> for FunctionPrototypeData
sourcefn eq(&self, other: &FunctionPrototypeData) -> bool
fn eq(&self, other: &FunctionPrototypeData) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FunctionPrototypeData) -> bool
fn ne(&self, other: &FunctionPrototypeData) -> bool
This method tests for !=
.
impl StructuralPartialEq for FunctionPrototypeData
Auto Trait Implementations
impl RefUnwindSafe for FunctionPrototypeData
impl Send for FunctionPrototypeData
impl Sync for FunctionPrototypeData
impl Unpin for FunctionPrototypeData
impl UnwindSafe for FunctionPrototypeData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> NodeDisplay for T where
T: NodeContentDisplay,
impl<T> NodeDisplay for T where
T: NodeContentDisplay,
sourcefn display(&self) -> NodeDisplayWrapper<'_, T>
fn display(&self) -> NodeDisplayWrapper<'_, T>
Obtain a display wrapper for the current node