pub enum TabulationControl {
Character,
Line,
CharacterRemove,
LineRemove,
CharacterClearLine,
CharacterClearAll,
LineClearAll,
}
Variants§
Character
A character tabulation stop is set at the active presentation position.
Line
A line tabulation stop is set at the active line (the line that contains the active presentation position).
CharacterRemove
The character tabulation stop at the active presentation position is cleared.
LineRemove
The line tabulation stop at the active line is cleared.
CharacterClearLine
All character tabulation stops in the active line are cleared.
CharacterClearAll
All character tabulation stops are cleared.
LineClearAll
All line tabulation stops are cleared.
Trait Implementations§
Source§impl Clone for TabulationControl
impl Clone for TabulationControl
Source§fn clone(&self) -> TabulationControl
fn clone(&self) -> TabulationControl
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TabulationControl
impl Debug for TabulationControl
Source§impl Display for TabulationControl
impl Display for TabulationControl
impl Copy for TabulationControl
Auto Trait Implementations§
impl Freeze for TabulationControl
impl RefUnwindSafe for TabulationControl
impl Send for TabulationControl
impl Sync for TabulationControl
impl Unpin for TabulationControl
impl UnwindSafe for TabulationControl
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