[][src]Struct qt_3d_input::SignalOfSourceAxisType

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

Emits a Qt signal with arguments crate::q_axis_accumulator::SourceAxisType.

Corresponding C++ argument types: (Qt3DInput::QAxisAccumulator::SourceAxisType).

Use connect() method of this object to connect this signal to a slot. Use emit() method to emit the signal.

Methods

impl SignalOfSourceAxisType[src]

pub unsafe fn connect<R>(&self, receiver: R) -> CppBox<Connection> where
    R: AsReceiver,
    (SourceAxisType,): ArgumentsCompatible<R::Arguments>, 
[src]

Connects this signal to another signal or slot.

This is a shortcut for self.signal().connect(receiver).

impl SignalOfSourceAxisType[src]

pub fn signal(&self) -> Signal<(SourceAxisType,)>[src]

Returns a Signal object representing the signal.

This method is useful if you need to connect another signal to this signal. However, when you need to connect this signal to another signal or slot, it's simpler to use the connect() method of this object directly.

pub unsafe fn emit(&mut self, arg0: SourceAxisType)[src]

Emits the signal.

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

pub unsafe fn new() -> QBox<SignalOfSourceAxisType>[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 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 AsReceiver for SignalOfSourceAxisType[src]

impl CppDeletable for SignalOfSourceAxisType[src]

unsafe fn delete(&mut self)[src]

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

impl Deref for SignalOfSourceAxisType[src]

type Target = QObject

The resulting type after dereferencing.

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

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

impl DerefMut for SignalOfSourceAxisType[src]

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

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

impl DynamicCast<SignalOfSourceAxisType> for QObject[src]

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

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

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

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

impl StaticDowncast<SignalOfSourceAxisType> for QObject[src]

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

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

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

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

impl StaticUpcast<QObject> for SignalOfSourceAxisType[src]

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

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

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

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

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.