pub struct StructType {
pub kind: Node<StructKind>,
pub identifier: Option<Node<Identifier>>,
pub declarations: Option<Vec<Node<StructDeclaration>>>,
}
Expand description
Structure or union type specifier
(C11 6.7.2.1)
Fields§
§kind: Node<StructKind>
§identifier: Option<Node<Identifier>>
§declarations: Option<Vec<Node<StructDeclaration>>>
List of structure of union members, when present.
A GNU extension allows the list to be empty.
Trait Implementations§
Source§impl Clone for StructType
impl Clone for StructType
Source§fn clone(&self) -> StructType
fn clone(&self) -> StructType
Returns a copy 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 StructType
impl Debug for StructType
Source§impl PartialEq for StructType
impl PartialEq for StructType
impl StructuralPartialEq for StructType
Auto Trait Implementations§
impl Freeze for StructType
impl RefUnwindSafe for StructType
impl Send for StructType
impl Sync for StructType
impl Unpin for StructType
impl UnwindSafe for StructType
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