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§
source§impl Clone for RhsTactics
impl Clone for RhsTactics
source§fn clone(&self) -> RhsTactics
fn clone(&self) -> RhsTactics
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 RhsTactics
impl Debug for RhsTactics
source§impl PartialEq<RhsTactics> for RhsTactics
impl PartialEq<RhsTactics> for RhsTactics
source§fn eq(&self, other: &RhsTactics) -> bool
fn eq(&self, other: &RhsTactics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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