pub enum StretchMode {
NoStretch = 1,
Fence = 2,
Middle = 3,
}Variants§
NoStretch = 1
Don’t stretch the operator.
Fence = 2
Operator is in a fence and should stretch.
Middle = 3
Operator is in the middle of a fenced expression and should stretch.
Trait Implementations§
Source§impl Clone for StretchMode
impl Clone for StretchMode
Source§fn clone(&self) -> StretchMode
fn clone(&self) -> StretchMode
Returns a duplicate 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 StretchMode
impl Debug for StretchMode
Source§impl PartialEq for StretchMode
impl PartialEq for StretchMode
impl Copy for StretchMode
impl Eq for StretchMode
impl StructuralPartialEq for StretchMode
Auto Trait Implementations§
impl Freeze for StretchMode
impl RefUnwindSafe for StretchMode
impl Send for StretchMode
impl Sync for StretchMode
impl Unpin for StretchMode
impl UnwindSafe for StretchMode
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