objc2_foundation/generated/NSExtensionRequestHandling.rs
1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ffi::*;
4use core::ptr::NonNull;
5use objc2::__framework_prelude::*;
6
7use crate::*;
8
9extern_protocol!(
10 /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsextensionrequesthandling?language=objc)
11 pub unsafe trait NSExtensionRequestHandling: NSObjectProtocol {
12 #[cfg(feature = "NSExtensionContext")]
13 #[unsafe(method(beginRequestWithExtensionContext:))]
14 #[unsafe(method_family = none)]
15 fn beginRequestWithExtensionContext(&self, context: &NSExtensionContext);
16 }
17);