pub enum NodeMatch {
Struct {
name: String,
span: Span,
},
Enum {
name: String,
span: Span,
},
Function {
name: String,
span: Span,
},
MatchExpr {
span: Span,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl !Send for NodeMatch
impl !Sync for NodeMatch
impl Freeze for NodeMatch
impl RefUnwindSafe for NodeMatch
impl Unpin for NodeMatch
impl UnsafeUnpin for NodeMatch
impl UnwindSafe for NodeMatch
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