[][src]Struct qt_qml::q_qml_debugging_enabler::StartMode

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

Defines the debug connector's start behavior. You can interrupt QML engines starting while a debug client is connecting, in order to set breakpoints in or profile startup code.

C++ enum: QQmlDebuggingEnabler::StartMode.

C++ documentation:

Defines the debug connector's start behavior. You can interrupt QML engines starting while a debug client is connecting, in order to set breakpoints in or profile startup code.

Methods

impl StartMode[src]

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

impl StartMode[src]

pub const DoNotWaitForClient: StartMode[src]

Run any QML engines as usual while the debug services are connecting. (C++ enum variant: DoNotWaitForClient = 0)

pub const WaitForClient: StartMode[src]

If a QML engine starts while the debug services are connecting, interrupt it until they are done. (C++ enum variant: WaitForClient = 1)

Trait Implementations

impl Clone for StartMode[src]

impl Copy for StartMode[src]

impl Debug for StartMode[src]

impl Eq for StartMode[src]

impl From<StartMode> for c_int[src]

impl From<i32> for StartMode[src]

impl PartialEq<StartMode> for StartMode[src]

impl StructuralEq for StartMode[src]

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