[][src]Trait uikit_sys::INSNotificationQueue

pub trait INSNotificationQueue: Sized + Deref {
    unsafe fn initWithNotificationCenter_(
        self,
        notificationCenter: NSNotificationCenter
    ) -> instancetype
    where
        Self::Target: Message + Sized
, { ... }
unsafe fn enqueueNotification_postingStyle_(
        self,
        notification: NSNotification,
        postingStyle: NSPostingStyle
    )
    where
        Self::Target: Message + Sized
, { ... }
unsafe fn enqueueNotification_postingStyle_coalesceMask_forModes_(
        self,
        notification: NSNotification,
        postingStyle: NSPostingStyle,
        coalesceMask: NSNotificationCoalescing,
        modes: NSArray
    )
    where
        Self::Target: Message + Sized
, { ... }
unsafe fn dequeueNotificationsMatching_coalesceMask_(
        self,
        notification: NSNotification,
        coalesceMask: NSUInteger
    )
    where
        Self::Target: Message + Sized
, { ... }
unsafe fn defaultQueue() -> NSNotificationQueue
    where
        Self::Target: Message + Sized
, { ... } }

Provided methods

unsafe fn initWithNotificationCenter_(
    self,
    notificationCenter: NSNotificationCenter
) -> instancetype where
    Self::Target: Message + Sized

unsafe fn enqueueNotification_postingStyle_(
    self,
    notification: NSNotification,
    postingStyle: NSPostingStyle
) where
    Self::Target: Message + Sized

unsafe fn enqueueNotification_postingStyle_coalesceMask_forModes_(
    self,
    notification: NSNotification,
    postingStyle: NSPostingStyle,
    coalesceMask: NSNotificationCoalescing,
    modes: NSArray
) where
    Self::Target: Message + Sized

unsafe fn dequeueNotificationsMatching_coalesceMask_(
    self,
    notification: NSNotification,
    coalesceMask: NSUInteger
) where
    Self::Target: Message + Sized

unsafe fn defaultQueue() -> NSNotificationQueue where
    Self::Target: Message + Sized

Loading content...

Implementors

impl INSNotificationQueue for NSNotificationQueue[src]

Loading content...