[][src]Struct qt_core::Signal

pub struct Signal<Arguments>(_);

Methods

impl<A> Signal<A>[src]

pub unsafe fn new(
    q_object: impl CastInto<Ref<QObject>>,
    receiver_id: &'static CStr
) -> Self
[src]

impl<SignalArguments> Signal<SignalArguments>[src]

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

Trait Implementations

impl<A> AsReceiver for Signal<A>[src]

type Arguments = A

impl<A> Clone for Signal<A>[src]

impl<A> Copy for Signal<A>[src]

impl<A> Debug for Signal<A>[src]

Auto Trait Implementations

impl<Arguments> RefUnwindSafe for Signal<Arguments> where
    Arguments: RefUnwindSafe

impl<Arguments> !Send for Signal<Arguments>

impl<Arguments> !Sync for Signal<Arguments>

impl<Arguments> Unpin for Signal<Arguments> where
    Arguments: Unpin

impl<Arguments> UnwindSafe for Signal<Arguments> where
    Arguments: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.