rustidy_ast/expr/without_block/underscore.rs
1//! Underscore expression
2
3// Imports
4use {
5 crate::token,
6 rustidy_format::{Format, Formattable},
7 rustidy_parse::Parse,
8 rustidy_print::Print,
9};
10
11/// `UnderscoreExpression`
12#[derive(PartialEq, Eq, Clone, Debug)]
13#[derive(serde::Serialize, serde::Deserialize)]
14#[derive(Parse, Formattable, Format, Print)]
15pub struct UnderscoreExpression(token::Underscore);