Struct qmetaobject::connections::ConnectionHandle[][src]

#[repr(C)]
pub struct ConnectionHandle { /* fields omitted */ }
Expand description

Wrapper for QMetaObject::Connection class.

Qt documentation

Represents a handle to a signal-slot (or signal-functor) connection.

It can be used to check if the connection is valid and to disconnect it using QObject::disconnect(). For a signal-functor connection without a context object, it is the only way to selectively disconnect that connection.

As Connection is just a handle, the underlying signal-slot connection is unaffected when Connection is destroyed or reassigned.

Implementations

Wrapper for bool QObject::disconnect(const QMetaObject::Connection &connection) static member.

Qt documentation

Disconnect a connection.

If the connection is invalid or has already been disconnected, do nothing and return false.

Wrapper for bool QMetaObject::Connection::operator bool() const operator.

Returns true if the connection is valid.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.