Struct qmetaobject::connections::Signal[][src]

pub struct Signal<Args> { /* fields omitted */ }
Expand description

High-level typed wrapper for a pointer to a C++/Qt signal.

While low-level SignalInner operated on pointers to ‘erased’ member functions types, this struct adds type-safe behavior on top of that.

Args is a type that matches the argument of the signal.

For example, a C++ signal with signature void (MyType::*)(int, QString) will be represented by the Signal<fn(int, QString)> type.

Implementations

Wraps low-level type-erased signal representation in a high-level types wrapper.

Safety

Caller must ensure that number, types and order of arguments strictly matches between signal represented by inner and Args. Passing incorrect information may result in Undefined Behavior.

Example

use cpp::cpp;
use qmetaobject::*;

fn object_name_changed() -> Signal<fn(QString)> {
    unsafe {
        Signal::new(cpp!([] -> SignalInner as "SignalInner"  {
            return &QObject::objectNameChanged;
        }))
    }
}

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. 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.