[][src]Struct qt_3d_core::SlotOfQAbstractSkeleton

pub struct SlotOfQAbstractSkeleton<'a> { /* fields omitted */ }

Binds a Qt signal with arguments ::cpp_core::MutPtr<crate::QAbstractSkeleton> to a Rust closure.

Corresponding C++ argument types: (Qt3DCore::QAbstractSkeleton*).

Create an object using new() and bind your closure using set(). The closure will be called with the signal's arguments when the slot is invoked. Use connect() method of a qt_core::Signal object to connect the signal to this slot. The closure will be executed each time the slot is invoked until source signals are disconnected or the slot object is destroyed.

The slot object takes ownership of the passed closure. If set() is called again, previously set closure is dropped. Make sure that the slot object does not outlive objects referenced by the closure.

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

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0").

Methods

impl<'a> SlotOfQAbstractSkeleton<'a>[src]

pub fn new<F: FnMut(MutPtr<QAbstractSkeleton>) + 'a>(
    f: F
) -> SlotOfQAbstractSkeleton<'a>
[src]

Constructs a new object.

pub fn set<F: FnMut(MutPtr<QAbstractSkeleton>) + 'a>(&mut self, f: F)[src]

Sets f as the callback closure. If set() is called again, previous closure is dropped.

pub fn clear(&mut self)[src]

Drops the previously set closure, if any. After this, slot invocation will have no effect until a new closure is set.

pub unsafe fn as_raw(&mut self) -> MutRef<RawSlotOfQAbstractSkeleton>[src]

Trait Implementations

impl<'a, 'b: 'a> AsReceiver for &'b SlotOfQAbstractSkeleton<'a>[src]

impl<'a> Default for SlotOfQAbstractSkeleton<'a>[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, 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.