[][src]Struct qt_gui::q_text_list_format::Style

#[repr(transparent)]
pub struct Style(_);

This enum describes the symbols used to decorate list items:

C++ enum: QTextListFormat::Style.

C++ documentation:

This enum describes the symbols used to decorate list items:

Methods

impl Style[src]

pub fn to_int(&self) -> c_int[src]

impl Style[src]

pub const ListDisc: Style[src]

a filled circle (C++ enum variant: ListDisc = -1)

pub const ListCircle: Style[src]

an empty circle (C++ enum variant: ListCircle = -2)

pub const ListSquare: Style[src]

a filled square (C++ enum variant: ListSquare = -3)

pub const ListDecimal: Style[src]

decimal values in ascending order (C++ enum variant: ListDecimal = -4)

pub const ListLowerAlpha: Style[src]

lower case Latin characters in alphabetical order (C++ enum variant: ListLowerAlpha = -5)

pub const ListUpperAlpha: Style[src]

upper case Latin characters in alphabetical order (C++ enum variant: ListUpperAlpha = -6)

pub const ListLowerRoman: Style[src]

lower case roman numerals (supports up to 4999 items only) (C++ enum variant: ListLowerRoman = -7)

pub const ListUpperRoman: Style[src]

upper case roman numerals (supports up to 4999 items only) (C++ enum variant: ListUpperRoman = -8)

pub const ListStyleUndefined: Style[src]

C++ enum variant: ListStyleUndefined = 0

Trait Implementations

impl Clone for Style[src]

impl Copy for Style[src]

impl Debug for Style[src]

impl Eq for Style[src]

impl From<Style> for c_int[src]

impl From<i32> for Style[src]

impl PartialEq<Style> for Style[src]

impl StructuralEq for Style[src]

impl StructuralPartialEq for Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

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, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

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

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

impl<T> StaticUpcast<T> for 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.