[][src]Struct qt_widgets::q_graphics_effect::ChangeFlag

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

This enum describes what has changed in QGraphicsEffectSource.

C++ enum: QGraphicsEffect::ChangeFlag.

C++ documentation:

This enum describes what has changed in QGraphicsEffectSource.

The ChangeFlags type is a typedef for QFlags<ChangeFlag>. It stores an OR combination of ChangeFlag values.

Methods

impl ChangeFlag[src]

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

impl ChangeFlag[src]

pub const SourceAttached: ChangeFlag[src]

The effect is installed on a source. (C++ enum variant: SourceAttached = 1)

pub const SourceDetached: ChangeFlag[src]

The effect is uninstalled on a source. (C++ enum variant: SourceDetached = 2)

pub const SourceBoundingRectChanged: ChangeFlag[src]

The bounding rect of the source has changed. (C++ enum variant: SourceBoundingRectChanged = 4)

pub const SourceInvalidated: ChangeFlag[src]

The visual appearance of the source has changed. (C++ enum variant: SourceInvalidated = 8)

Trait Implementations

impl Eq for ChangeFlag[src]

impl Clone for ChangeFlag[src]

impl PartialEq<ChangeFlag> for ChangeFlag[src]

impl From<i32> for ChangeFlag[src]

impl From<ChangeFlag> for c_int[src]

impl From<ChangeFlag> for QFlags<ChangeFlag>[src]

impl Copy for ChangeFlag[src]

impl<T: Into<QFlags<ChangeFlag>>> BitOr<T> for ChangeFlag[src]

type Output = QFlags<ChangeFlag>

The resulting type after applying the | operator.

impl Debug for ChangeFlag[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]