[][src]Struct qt_gui::q_accessible_table_model_change_event::ModelChangeType

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

This enum describes the different types of changes in the table model.

C++ enum: QAccessibleTableModelChangeEvent::ModelChangeType.

C++ documentation:

This enum describes the different types of changes in the table model.

Methods

impl ModelChangeType[src]

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

impl ModelChangeType[src]

pub const ModelReset: ModelChangeType[src]

The model has been reset, all previous knowledge about the model is now invalid. (C++ enum variant: ModelReset = 0)

pub const DataChanged: ModelChangeType[src]

No cells have been added or removed, but the data of the specified cell range is invalid. (C++ enum variant: DataChanged = 1)

pub const RowsInserted: ModelChangeType[src]

New rows have been inserted. (C++ enum variant: RowsInserted = 2)

pub const ColumnsInserted: ModelChangeType[src]

New columns have been inserted. (C++ enum variant: ColumnsInserted = 3)

pub const RowsRemoved: ModelChangeType[src]

Rows have been removed. (C++ enum variant: RowsRemoved = 4)

pub const ColumnsRemoved: ModelChangeType[src]

Columns have been removed. (C++ enum variant: ColumnsRemoved = 5)

Trait Implementations

impl Clone for ModelChangeType[src]

impl Copy for ModelChangeType[src]

impl Debug for ModelChangeType[src]

impl Eq for ModelChangeType[src]

impl From<ModelChangeType> for c_int[src]

impl From<i32> for ModelChangeType[src]

impl PartialEq<ModelChangeType> for ModelChangeType[src]

impl StructuralEq for ModelChangeType[src]

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