pub struct StructField(/* private fields */);Expand description
A single field: value entry inside a Struct.
Implementations§
Source§impl StructField
impl StructField
Sourcepub fn cast(node: SyntaxNode) -> Option<Self>
pub fn cast(node: SyntaxNode) -> Option<Self>
Wrap a SyntaxKind::StructField node, or None for any other kind.
Sourcepub fn syntax(&self) -> &SyntaxNode
pub fn syntax(&self) -> &SyntaxNode
The underlying SyntaxNode.
Sourcepub fn name(&self) -> Option<SyntaxToken>
pub fn name(&self) -> Option<SyntaxToken>
The field-name token (Ident), if present.
Trait Implementations§
Source§impl Clone for StructField
impl Clone for StructField
Source§fn clone(&self) -> StructField
fn clone(&self) -> StructField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StructField
impl Debug for StructField
impl Eq for StructField
Source§impl Hash for StructField
impl Hash for StructField
Source§impl PartialEq for StructField
impl PartialEq for StructField
impl StructuralPartialEq for StructField
Auto Trait Implementations§
impl !RefUnwindSafe for StructField
impl !Send for StructField
impl !Sync for StructField
impl !UnwindSafe for StructField
impl Freeze for StructField
impl Unpin for StructField
impl UnsafeUnpin for StructField
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