Struct spreadsheet_ods::style::tabstop::TabStop[][src]

pub struct TabStop { /* fields omitted */ }

Tabstops are part of a paragraph style.

Implementations

impl TabStop[src]

pub fn new() -> Self[src]

pub fn set_tabstop_char(&mut self, c: char)[src]

Delimiter character for tabs of type Char.

pub fn set_leader_color(&mut self, color: Rgb<u8>)[src]

Color

pub fn set_leader_style(&mut self, style: LineStyle)[src]

Linestyle for the leader line.

pub fn set_leader_text(&mut self, text: char)[src]

Fill character for the leader line.

pub fn set_leader_text_style(&mut self, styleref: String)[src]

Textstyle for the leader line.

pub fn set_leader_type(&mut self, t: LineType)[src]

LineType for the leader line.

pub fn set_leader_width(&mut self, w: LineWidth)[src]

Width of the leader line.

pub fn set_position(&mut self, pos: Length)[src]

Position of the tab stop.

pub fn set_tabstop_type(&mut self, t: TabStopType)[src]

Type of the tab stop.

pub fn attrmap(&self) -> &AttrMap2[src]

pub fn attrmap_mut(&mut self) -> &mut AttrMap2[src]

Trait Implementations

impl Clone for TabStop[src]

impl Debug for TabStop[src]

impl Default for TabStop[src]

Auto Trait Implementations

impl RefUnwindSafe for TabStop

impl Send for TabStop

impl Sync for TabStop

impl Unpin for TabStop

impl UnwindSafe for TabStop

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.