pub enum OperatorPosition {
Maintain,
SameLine,
NextLine,
}
Expand description
Where to place the operator for expressions that span multiple lines.
Variants§
Maintain
Maintains the operator being on the next line or the same line.
SameLine
Forces the operator to be on the same line.
NextLine
Forces the operator to be on the next line.
Trait Implementations§
source§impl Clone for OperatorPosition
impl Clone for OperatorPosition
source§fn clone(&self) -> OperatorPosition
fn clone(&self) -> OperatorPosition
Returns a copy of the value. Read more
1.0.0 · 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 OperatorPosition
impl Debug for OperatorPosition
source§impl<'de> Deserialize<'de> for OperatorPosition
impl<'de> Deserialize<'de> for OperatorPosition
source§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
source§impl FromStr for OperatorPosition
impl FromStr for OperatorPosition
source§impl PartialEq<OperatorPosition> for OperatorPosition
impl PartialEq<OperatorPosition> for OperatorPosition
source§fn eq(&self, other: &OperatorPosition) -> bool
fn eq(&self, other: &OperatorPosition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.