pub unsafe trait UIPrintInteractionControllerDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn printInteractionControllerParentViewController(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    ) -> Option<Retained<UIViewController>>
       where Self: Sized + Message { ... }
    unsafe fn printInteractionController_choosePaper(
        &self,
        print_interaction_controller: &UIPrintInteractionController,
        paper_list: &NSArray<UIPrintPaper>
    ) -> Retained<UIPrintPaper>
       where Self: Sized + Message { ... }
    unsafe fn printInteractionControllerWillPresentPrinterOptions(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    )
       where Self: Sized + Message { ... }
    unsafe fn printInteractionControllerDidPresentPrinterOptions(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    )
       where Self: Sized + Message { ... }
    unsafe fn printInteractionControllerWillDismissPrinterOptions(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    )
       where Self: Sized + Message { ... }
    unsafe fn printInteractionControllerDidDismissPrinterOptions(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    )
       where Self: Sized + Message { ... }
    unsafe fn printInteractionControllerWillStartJob(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    )
       where Self: Sized + Message { ... }
    unsafe fn printInteractionControllerDidFinishJob(
        &self,
        print_interaction_controller: &UIPrintInteractionController
    )
       where Self: Sized + Message { ... }
    unsafe fn printInteractionController_cutLengthForPaper(
        &self,
        print_interaction_controller: &UIPrintInteractionController,
        paper: &UIPrintPaper
    ) -> CGFloat
       where Self: Sized + Message { ... }
    unsafe fn printInteractionController_chooseCutterBehavior(
        &self,
        print_interaction_controller: &UIPrintInteractionController,
        available_behaviors: &NSArray
    ) -> UIPrinterCutterBehavior
       where Self: Sized + Message { ... }
}
Available on crate feature UIPrintInteractionController only.

Provided Methods§

source

unsafe fn printInteractionControllerParentViewController( &self, print_interaction_controller: &UIPrintInteractionController ) -> Option<Retained<UIViewController>>
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn printInteractionController_choosePaper( &self, print_interaction_controller: &UIPrintInteractionController, paper_list: &NSArray<UIPrintPaper> ) -> Retained<UIPrintPaper>
where Self: Sized + Message,

Available on crate feature UIPrintPaper only.
source

unsafe fn printInteractionControllerWillPresentPrinterOptions( &self, print_interaction_controller: &UIPrintInteractionController )
where Self: Sized + Message,

source

unsafe fn printInteractionControllerDidPresentPrinterOptions( &self, print_interaction_controller: &UIPrintInteractionController )
where Self: Sized + Message,

source

unsafe fn printInteractionControllerWillDismissPrinterOptions( &self, print_interaction_controller: &UIPrintInteractionController )
where Self: Sized + Message,

source

unsafe fn printInteractionControllerDidDismissPrinterOptions( &self, print_interaction_controller: &UIPrintInteractionController )
where Self: Sized + Message,

source

unsafe fn printInteractionControllerWillStartJob( &self, print_interaction_controller: &UIPrintInteractionController )
where Self: Sized + Message,

source

unsafe fn printInteractionControllerDidFinishJob( &self, print_interaction_controller: &UIPrintInteractionController )
where Self: Sized + Message,

source

unsafe fn printInteractionController_cutLengthForPaper( &self, print_interaction_controller: &UIPrintInteractionController, paper: &UIPrintPaper ) -> CGFloat
where Self: Sized + Message,

Available on crate feature UIPrintPaper only.
source

unsafe fn printInteractionController_chooseCutterBehavior( &self, print_interaction_controller: &UIPrintInteractionController, available_behaviors: &NSArray ) -> UIPrinterCutterBehavior
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UIPrintInteractionControllerDelegate

source§

const NAME: &'static str = "UIPrintInteractionControllerDelegate"

The name of the Objective-C protocol that this type represents.
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 UIPrintInteractionControllerDelegate

Implementations on Foreign Types§

source§

impl<T> UIPrintInteractionControllerDelegate for ProtocolObject<T>

Implementors§