Struct glsl_lang::ast::FullySpecifiedTypeData
source · [−]pub struct FullySpecifiedTypeData {
pub qualifier: Option<Node<TypeQualifierData>>,
pub ty: Node<TypeSpecifierData>,
}
Expand description
Fully specified type.
Fields
qualifier: Option<Node<TypeQualifierData>>
Optional type qualifier
ty: Node<TypeSpecifierData>
Type specifier
Implementations
sourceimpl FullySpecifiedTypeData
impl FullySpecifiedTypeData
sourcepub fn new(ty: Node<TypeSpecifierNonArrayData>) -> FullySpecifiedTypeData
pub fn new(ty: Node<TypeSpecifierNonArrayData>) -> FullySpecifiedTypeData
Create a new FullySpecifiedType from a TypeSpecifierNonArray, with no qualifier and no array specifier
Trait Implementations
sourceimpl Clone for FullySpecifiedTypeData
impl Clone for FullySpecifiedTypeData
sourcefn clone(&self) -> FullySpecifiedTypeData
fn clone(&self) -> FullySpecifiedTypeData
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 FullySpecifiedTypeData
impl Debug for FullySpecifiedTypeData
sourceimpl From<Node<FullySpecifiedTypeData>> for FullySpecifiedTypeData
impl From<Node<FullySpecifiedTypeData>> for FullySpecifiedTypeData
sourcefn from(node: Node<FullySpecifiedTypeData>) -> FullySpecifiedTypeData
fn from(node: Node<FullySpecifiedTypeData>) -> FullySpecifiedTypeData
Converts to this type from the input type.
sourceimpl From<TypeSpecifierNonArrayData> for FullySpecifiedTypeData
impl From<TypeSpecifierNonArrayData> for FullySpecifiedTypeData
sourcefn from(ty: TypeSpecifierNonArrayData) -> FullySpecifiedTypeData
fn from(ty: TypeSpecifierNonArrayData) -> FullySpecifiedTypeData
Converts to this type from the input type.
sourceimpl NodeContent for FullySpecifiedTypeData
impl NodeContent for FullySpecifiedTypeData
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 FullySpecifiedTypeData
impl NodeContentDisplay for FullySpecifiedTypeData
sourceimpl PartialEq<FullySpecifiedTypeData> for FullySpecifiedTypeData
impl PartialEq<FullySpecifiedTypeData> for FullySpecifiedTypeData
sourcefn eq(&self, other: &FullySpecifiedTypeData) -> bool
fn eq(&self, other: &FullySpecifiedTypeData) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FullySpecifiedTypeData) -> bool
fn ne(&self, other: &FullySpecifiedTypeData) -> bool
This method tests for !=
.
impl StructuralPartialEq for FullySpecifiedTypeData
Auto Trait Implementations
impl RefUnwindSafe for FullySpecifiedTypeData
impl Send for FullySpecifiedTypeData
impl Sync for FullySpecifiedTypeData
impl Unpin for FullySpecifiedTypeData
impl UnwindSafe for FullySpecifiedTypeData
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