pub enum Stretchy {
Always = 1,
PrePostfix = 2,
Never = 3,
AlwaysAsymmetric = 4,
}Variants§
Always = 1
The operator is always stretchy (e.g. (, )).
PrePostfix = 2
The operator is only stretchy as a pre- or postfix operator (e.g. |).
Never = 3
The operator is never stretchy (e.g. /).
AlwaysAsymmetric = 4
The operator is always stretchy but isn’t symmetric (e.g. ↑).
Trait Implementations§
impl Copy for Stretchy
impl Eq for Stretchy
impl StructuralPartialEq for Stretchy
Auto Trait Implementations§
impl Freeze for Stretchy
impl RefUnwindSafe for Stretchy
impl Send for Stretchy
impl Sync for Stretchy
impl Unpin for Stretchy
impl UnwindSafe for Stretchy
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