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
sourceimpl Clone for OperatorPosition
impl Clone for OperatorPosition
sourcefn clone(&self) -> OperatorPosition
fn clone(&self) -> OperatorPosition
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for OperatorPosition
impl Debug for OperatorPosition
sourceimpl<'de> Deserialize<'de> for OperatorPosition
impl<'de> Deserialize<'de> for OperatorPosition
sourcefn 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
sourceimpl FromStr for OperatorPosition
impl FromStr for OperatorPosition
sourceimpl PartialEq<OperatorPosition> for OperatorPosition
impl PartialEq<OperatorPosition> for OperatorPosition
sourcefn eq(&self, other: &OperatorPosition) -> bool
fn eq(&self, other: &OperatorPosition) -> bool
sourceimpl Serialize for OperatorPosition
impl Serialize for OperatorPosition
sourceimpl ToString for OperatorPosition
impl ToString for OperatorPosition
impl Copy for OperatorPosition
impl StructuralPartialEq for OperatorPosition
Auto Trait Implementations
impl RefUnwindSafe for OperatorPosition
impl Send for OperatorPosition
impl Sync for OperatorPosition
impl Unpin for OperatorPosition
impl UnwindSafe for OperatorPosition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more