[][src]Struct qt_core::q_text_stream::FieldAlignment

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

This enum specifies how to align text in fields when the field is wider than the text that occupies it.

C++ enum: QTextStream::FieldAlignment.

C++ documentation:

This enum specifies how to align text in fields when the field is wider than the text that occupies it.

See also setFieldAlignment().

Methods

impl FieldAlignment[src]

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

impl FieldAlignment[src]

pub const AlignLeft: FieldAlignment[src]

Pad on the right side of fields. (C++ enum variant: AlignLeft = 0)

pub const AlignRight: FieldAlignment[src]

Pad on the left side of fields. (C++ enum variant: AlignRight = 1)

pub const AlignCenter: FieldAlignment[src]

Pad on both sides of field. (C++ enum variant: AlignCenter = 2)

pub const AlignAccountingStyle: FieldAlignment[src]

Same as AlignRight, except that the sign of a number is flush left. (C++ enum variant: AlignAccountingStyle = 3)

Trait Implementations

impl Clone for FieldAlignment[src]

impl Copy for FieldAlignment[src]

impl Debug for FieldAlignment[src]

impl Eq for FieldAlignment[src]

impl From<FieldAlignment> for c_int[src]

impl From<i32> for FieldAlignment[src]

impl PartialEq<FieldAlignment> for FieldAlignment[src]

impl StructuralEq for FieldAlignment[src]

impl StructuralPartialEq for FieldAlignment[src]

Auto Trait Implementations

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.