Enum rustfmt_nightly::expr::RhsTactics
source · pub(crate) enum RhsTactics {
Default,
ForceNextLineWithoutIndent,
AllowOverflow,
}
Expand description
Controls where to put the rhs.
Variants
Default
Use heuristics.
ForceNextLineWithoutIndent
Put the rhs on the next line if it uses multiple line, without extra indentation.
AllowOverflow
Allow overflowing max width if neither Default
nor ForceNextLineWithoutIndent
did not work.
Trait Implementations
sourceimpl Clone for RhsTactics
impl Clone for RhsTactics
sourcefn clone(&self) -> RhsTactics
fn clone(&self) -> RhsTactics
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RhsTactics
impl Debug for RhsTactics
sourceimpl PartialEq<RhsTactics> for RhsTactics
impl PartialEq<RhsTactics> for RhsTactics
sourcefn eq(&self, other: &RhsTactics) -> bool
fn eq(&self, other: &RhsTactics) -> bool
impl Copy for RhsTactics
impl Eq for RhsTactics
impl StructuralEq for RhsTactics
impl StructuralPartialEq for RhsTactics
Auto Trait Implementations
impl RefUnwindSafe for RhsTactics
impl Send for RhsTactics
impl Sync for RhsTactics
impl Unpin for RhsTactics
impl UnwindSafe for RhsTactics
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
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Default
: 0 bytesForceNextLineWithoutIndent
: 0 bytesAllowOverflow
: 0 bytes