pub enum SingleBodyPosition {
Maintain,
SameLine,
NextLine,
}Expand description
Where to place the expression of a statement that could possibly be on one line (ex. if (true) console.log(5);).
Variants
Maintain
Maintains the position of the expression.
SameLine
Forces the whole statement to be on one line.
NextLine
Forces the expression to be on the next line.
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 SingleBodyPosition
impl Send for SingleBodyPosition
impl Sync for SingleBodyPosition
impl Unpin for SingleBodyPosition
impl UnwindSafe for SingleBodyPosition
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