pub enum JsxMultiLineParens {
Never,
Prefer,
Always,
}
Expand description
Whether to surround a JSX element or fragment with parentheses when it’s the top JSX node and it spans multiple lines.
Variants
Never
Never wrap JSX with parentheses.
Prefer
Prefer wrapping with parentheses in most scenarios, except in function arguments and JSX attributes.
Always
Always wrap JSX with parentheses if it spans multiple lines.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for JsxMultiLineParens
impl Send for JsxMultiLineParens
impl Sync for JsxMultiLineParens
impl Unpin for JsxMultiLineParens
impl UnwindSafe for JsxMultiLineParens
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more