[][src]Struct qt_widgets::q_calendar_widget::HorizontalHeaderFormat

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

This enum type defines the various formats the horizontal header can display.

C++ enum: QCalendarWidget::HorizontalHeaderFormat.

C++ documentation:

This enum type defines the various formats the horizontal header can display.

See also horizontalHeaderFormat() and VerticalHeaderFormat.

Methods

impl HorizontalHeaderFormat[src]

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

impl HorizontalHeaderFormat[src]

pub const NoHorizontalHeader: HorizontalHeaderFormat[src]

The header is hidden. (C++ enum variant: NoHorizontalHeader = 0)

pub const SingleLetterDayNames: HorizontalHeaderFormat[src]

The header displays a single letter abbreviation for day names (e.g. M for Monday). (C++ enum variant: SingleLetterDayNames = 1)

pub const ShortDayNames: HorizontalHeaderFormat[src]

The header displays a short abbreviation for day names (e.g. Mon for Monday). (C++ enum variant: ShortDayNames = 2)

pub const LongDayNames: HorizontalHeaderFormat[src]

The header displays complete day names (e.g. Monday). (C++ enum variant: LongDayNames = 3)

Trait Implementations

impl Clone for HorizontalHeaderFormat[src]

impl Copy for HorizontalHeaderFormat[src]

impl Debug for HorizontalHeaderFormat[src]

impl Eq for HorizontalHeaderFormat[src]

impl From<HorizontalHeaderFormat> for c_int[src]

impl From<i32> for HorizontalHeaderFormat[src]

impl PartialEq<HorizontalHeaderFormat> for HorizontalHeaderFormat[src]

impl StructuralEq for HorizontalHeaderFormat[src]

impl StructuralPartialEq for HorizontalHeaderFormat[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.