objc2_authentication_services/generated/
ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput.rs1use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5use objc2_foundation::*;
6
7use crate::*;
8
9extern_class!(
10 #[unsafe(super(NSObject))]
12 #[derive(Debug, PartialEq, Eq, Hash)]
13 pub struct ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput;
14);
15
16extern_conformance!(
17 unsafe impl NSObjectProtocol for ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput {}
18);
19
20impl ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput {
21 extern_methods!(
22 #[unsafe(method(new))]
23 #[unsafe(method_family = new)]
24 pub unsafe fn new() -> Retained<Self>;
25
26 #[unsafe(method(init))]
27 #[unsafe(method_family = init)]
28 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
29
30 #[unsafe(method(readData))]
31 #[unsafe(method_family = none)]
32 pub unsafe fn readData(&self) -> Option<Retained<NSData>>;
33
34 #[unsafe(method(didWrite))]
35 #[unsafe(method_family = none)]
36 pub unsafe fn didWrite(&self) -> bool;
37 );
38}