objc2_authentication_services/generated/
ASAccountAuthenticationModificationRequest.rs

1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5
6use crate::*;
7
8extern_class!(
9    /// [Apple's documentation](https://developer.apple.com/documentation/authenticationservices/asaccountauthenticationmodificationrequest?language=objc)
10    #[unsafe(super(NSObject))]
11    #[derive(Debug, PartialEq, Eq, Hash)]
12    pub struct ASAccountAuthenticationModificationRequest;
13);
14
15extern_conformance!(
16    unsafe impl NSObjectProtocol for ASAccountAuthenticationModificationRequest {}
17);
18
19impl ASAccountAuthenticationModificationRequest {
20    extern_methods!();
21}
22
23/// Methods declared on superclass `NSObject`.
24impl ASAccountAuthenticationModificationRequest {
25    extern_methods!(
26        #[unsafe(method(init))]
27        #[unsafe(method_family = init)]
28        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
29
30        #[unsafe(method(new))]
31        #[unsafe(method_family = new)]
32        pub unsafe fn new() -> Retained<Self>;
33    );
34}