pub enum TabStopType {
Center,
Left,
Right,
Char,
}Expand description
19.519 style:type
The style:type attribute specifies the type of a tab stop within paragraph formatting properties.
The defined values for the style:type attribute are:
- center: text is centered on a tab stop.
- char: character appears at a tab stop position.
- left: text is left aligned with a tab stop.
- right: text is right aligned with a tab stop.
For a style:tab-stop 17.8 element the default value for this attribute is left.
Variants§
Trait Implementations§
Source§impl Clone for TabStopType
impl Clone for TabStopType
Source§fn clone(&self) -> TabStopType
fn clone(&self) -> TabStopType
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 TabStopType
impl Debug for TabStopType
Source§impl Default for TabStopType
impl Default for TabStopType
Source§impl Display for TabStopType
impl Display for TabStopType
impl Copy for TabStopType
Auto Trait Implementations§
impl Freeze for TabStopType
impl RefUnwindSafe for TabStopType
impl Send for TabStopType
impl Sync for TabStopType
impl Unpin for TabStopType
impl UnsafeUnpin for TabStopType
impl UnwindSafe for TabStopType
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