[][src]Struct qt_widgets::RawSlotOfQStringQString

#[repr(C)]
pub struct RawSlotOfQStringQString { /* fields omitted */ }

Binds a Qt signal with arguments *const ::qt_core::QString,*const ::qt_core::QString to a Rust extern function.

It's recommended to use SlotOfQStringQString instead because it provides a more high-level API.

Corresponding C++ argument types: (const QString&, const QString&).

Create an object using new() and bind your function and payload using set(). The function will receive the payload as its first arguments, and the rest of arguments will be values passed through the Qt connection system. Use connect() method of a qt_core::Signal object to connect the signal to this slot. The callback function will be executed each time the slot is invoked until source signals are disconnected or the slot object is destroyed.

If set() was not called, slot invocation has no effect.

Methods

impl RawSlotOfQStringQString[src]

pub unsafe fn custom_slot(
    &mut self,
    arg0: impl CastInto<Ref<QString>>,
    arg1: impl CastInto<Ref<QString>>
)
[src]

Calls the slot directly, invoking the assigned handler (if any).

pub unsafe fn meta_object(&self) -> Ptr<QMetaObject>[src]

pub unsafe fn new() -> CppBox<RawSlotOfQStringQString>[src]

Creates a new object.

pub unsafe fn qt_metacall(
    &mut self,
    arg1: Call,
    arg2: c_int,
    arg3: impl CastInto<MutPtr<*mut c_void>>
) -> c_int
[src]

pub unsafe fn qt_metacast(
    &mut self,
    arg1: impl CastInto<Ptr<c_char>>
) -> MutPtr<c_void>
[src]

pub unsafe fn set(
    &mut self,
    func: Option<extern "C" fn(_: *mut c_void, _: *const QString, _: *const QString)>,
    data: impl CastInto<MutPtr<c_void>>
)
[src]

Assigns func as the signal handler.

func will be called each time a connected signal is emitted. Any previously assigned function will be deregistered. Passing None will deregister the handler without setting a new one.

pub unsafe fn static_meta_object() -> Ref<QMetaObject>[src]

pub unsafe fn tr(
    s: impl CastInto<Ptr<c_char>>,
    c: impl CastInto<Ptr<c_char>>,
    n: c_int
) -> CppBox<QString>
[src]

pub unsafe fn tr_utf8(
    s: impl CastInto<Ptr<c_char>>,
    c: impl CastInto<Ptr<c_char>>,
    n: c_int
) -> CppBox<QString>
[src]

Trait Implementations

impl Deref for RawSlotOfQStringQString[src]

type Target = QObject

The resulting type after dereferencing.

fn deref(&self) -> &QObject[src]

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* ptr).

impl DerefMut for RawSlotOfQStringQString[src]

fn deref_mut(&mut self) -> &mut QObject[src]

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* ptr).

impl StaticUpcast<QObject> for RawSlotOfQStringQString[src]

unsafe fn static_upcast(ptr: Ptr<RawSlotOfQStringQString>) -> Ptr<QObject>[src]

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* ptr).

unsafe fn static_upcast_mut(
    ptr: MutPtr<RawSlotOfQStringQString>
) -> MutPtr<QObject>
[src]

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* ptr).

impl StaticDowncast<RawSlotOfQStringQString> for QObject[src]

unsafe fn static_downcast(ptr: Ptr<QObject>) -> Ptr<RawSlotOfQStringQString>[src]

Calls C++ function: ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* static_cast<ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref*>(QObject* ptr).

unsafe fn static_downcast_mut(
    ptr: MutPtr<QObject>
) -> MutPtr<RawSlotOfQStringQString>
[src]

Calls C++ function: ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* static_cast<ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref*>(QObject* ptr).

impl DynamicCast<RawSlotOfQStringQString> for QObject[src]

unsafe fn dynamic_cast(ptr: Ptr<QObject>) -> Ptr<RawSlotOfQStringQString>[src]

Calls C++ function: ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* dynamic_cast<ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref*>(QObject* ptr).

unsafe fn dynamic_cast_mut(
    ptr: MutPtr<QObject>
) -> MutPtr<RawSlotOfQStringQString>
[src]

Calls C++ function: ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref* dynamic_cast<ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref*>(QObject* ptr).

impl CppDeletable for RawSlotOfQStringQString[src]

unsafe fn delete(&mut self)[src]

Calls C++ function: [destructor] void ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref::~ctr_qt_widgets_ffi_slot_wrapper_QString_const_ref_QString_const_ref().

impl AsReceiver for RawSlotOfQStringQString[src]

Auto Trait Implementations

Blanket Implementations

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]