NSSeguePerforming

Trait NSSeguePerforming 

Source
pub unsafe trait NSSeguePerforming: NSObjectProtocol + MainThreadOnly {
    // Provided methods
    unsafe fn prepareForSegue_sender(
        &self,
        segue: &NSStoryboardSegue,
        sender: Option<&AnyObject>,
    )
       where Self: Sized + Message { ... }
    unsafe fn performSegueWithIdentifier_sender(
        &self,
        identifier: &NSStoryboardSegueIdentifier,
        sender: Option<&AnyObject>,
    )
       where Self: Sized + Message { ... }
    unsafe fn shouldPerformSegueWithIdentifier_sender(
        &self,
        identifier: &NSStoryboardSegueIdentifier,
        sender: Option<&AnyObject>,
    ) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature NSStoryboardSegue only.
Expand description

Provided Methods§

Source

unsafe fn prepareForSegue_sender( &self, segue: &NSStoryboardSegue, sender: Option<&AnyObject>, )
where Self: Sized + Message,

Source

unsafe fn performSegueWithIdentifier_sender( &self, identifier: &NSStoryboardSegueIdentifier, sender: Option<&AnyObject>, )
where Self: Sized + Message,

Source

unsafe fn shouldPerformSegueWithIdentifier_sender( &self, identifier: &NSStoryboardSegueIdentifier, sender: Option<&AnyObject>, ) -> bool
where Self: Sized + Message,

Trait Implementations§

Source§

impl ProtocolType for dyn NSSeguePerforming

Source§

const NAME: &'static str = "NSSeguePerforming"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn NSSeguePerforming

Implementations on Foreign Types§

Source§

impl<T> NSSeguePerforming for ProtocolObject<T>

Implementors§

Source§

impl NSSeguePerforming for NSCollectionViewItem

Available on crate feature NSCollectionView only.
Source§

impl NSSeguePerforming for NSPageController

Available on crate feature NSPageController only.
Source§

impl NSSeguePerforming for NSSplitViewController

Available on crate feature NSSplitViewController only.
Source§

impl NSSeguePerforming for NSTabViewController

Available on crate feature NSTabViewController only.
Source§

impl NSSeguePerforming for NSTitlebarAccessoryViewController

Available on crate feature NSTitlebarAccessoryViewController only.
Source§

impl NSSeguePerforming for NSViewController

Available on crate feature NSViewController only.
Source§

impl NSSeguePerforming for NSWindowController

Available on crate feature NSWindowController only.