//! This file has been automatically generated by `objc2`'s `header-translator`. //! DO NOT EDIT use core::ffi::*; use core::ptr::NonNull; use objc2::__framework_prelude::*; use crate::*; extern "C" { /// ************* Generic Exception names ************** /// /// See also [Apple's documentation](https://developer.apple.com/documentation/foundation/nsgenericexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSGenericException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsrangeexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSRangeException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsinvalidargumentexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSInvalidArgumentException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsinternalinconsistencyexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSInternalInconsistencyException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsmallocexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSMallocException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsobjectinaccessibleexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSObjectInaccessibleException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsobjectnotavailableexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSObjectNotAvailableException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsdestinationinvalidexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSDestinationInvalidException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsporttimeoutexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSPortTimeoutException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsinvalidsendportexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSInvalidSendPortException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsinvalidreceiveportexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSInvalidReceivePortException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsportsendexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSPortSendException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsportreceiveexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSPortReceiveException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsoldstyleexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSOldStyleException: &'static NSExceptionName; } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsinconsistentarchiveexception?language=objc) #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] pub static NSInconsistentArchiveException: &'static NSExceptionName; } extern_class!( /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsexception?language=objc) #[unsafe(super(NSObject))] #[derive(PartialEq, Eq, Hash)] pub struct NSException; ); #[cfg(feature = "NSObject")] extern_conformance!( unsafe impl NSCoding for NSException {} ); #[cfg(feature = "NSObject")] extern_conformance!( unsafe impl NSCopying for NSException {} ); #[cfg(feature = "NSObject")] unsafe impl CopyingHelper for NSException { type Result = Self; } extern_conformance!( unsafe impl NSObjectProtocol for NSException {} ); #[cfg(feature = "NSObject")] extern_conformance!( unsafe impl NSSecureCoding for NSException {} ); impl NSException { extern_methods!( #[cfg(all( feature = "NSDictionary", feature = "NSObjCRuntime", feature = "NSString" ))] /// # Safety /// /// `user_info` generic should be of the correct type. #[unsafe(method(exceptionWithName:reason:userInfo:))] #[unsafe(method_family = none)] pub unsafe fn exceptionWithName_reason_userInfo( name: &NSExceptionName, reason: Option<&NSString>, user_info: Option<&NSDictionary>, ) -> Retained; #[cfg(all( feature = "NSDictionary", feature = "NSObjCRuntime", feature = "NSString" ))] /// # Safety /// /// `a_user_info` generic should be of the correct type. #[unsafe(method(initWithName:reason:userInfo:))] #[unsafe(method_family = init)] pub unsafe fn initWithName_reason_userInfo( this: Allocated, a_name: &NSExceptionName, a_reason: Option<&NSString>, a_user_info: Option<&NSDictionary>, ) -> Retained; #[cfg(all(feature = "NSObjCRuntime", feature = "NSString"))] #[unsafe(method(name))] #[unsafe(method_family = none)] pub fn name(&self) -> Retained; #[cfg(feature = "NSString")] #[unsafe(method(reason))] #[unsafe(method_family = none)] pub fn reason(&self) -> Option>; #[cfg(feature = "NSDictionary")] #[unsafe(method(userInfo))] #[unsafe(method_family = none)] pub fn userInfo(&self) -> Option>; #[cfg(all(feature = "NSArray", feature = "NSValue"))] #[unsafe(method(callStackReturnAddresses))] #[unsafe(method_family = none)] pub fn callStackReturnAddresses(&self) -> Retained>; #[cfg(all(feature = "NSArray", feature = "NSString"))] #[unsafe(method(callStackSymbols))] #[unsafe(method_family = none)] pub fn callStackSymbols(&self) -> Retained>; ); } /// Methods declared on superclass `NSObject`. impl NSException { extern_methods!( #[unsafe(method(init))] #[unsafe(method_family = init)] pub fn init(this: Allocated) -> Retained; ); } /// NSExceptionRaisingConveniences. impl NSException { extern_methods!(); } /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsuncaughtexceptionhandler?language=objc) pub type NSUncaughtExceptionHandler = core::ffi::c_void; #[inline] pub extern "C-unwind" fn NSGetUncaughtExceptionHandler() -> *mut NSUncaughtExceptionHandler { extern "C-unwind" { fn NSGetUncaughtExceptionHandler() -> *mut NSUncaughtExceptionHandler; } unsafe { NSGetUncaughtExceptionHandler() } } extern "C-unwind" { /// # Safety /// /// `_` must be a valid pointer or null. pub fn NSSetUncaughtExceptionHandler(param1: *mut NSUncaughtExceptionHandler); } extern "C" { /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsassertionhandlerkey?language=objc) #[cfg(feature = "NSString")] pub static NSAssertionHandlerKey: &'static NSString; } extern_class!( /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsassertionhandler?language=objc) #[unsafe(super(NSObject))] #[derive(Debug, PartialEq, Eq, Hash)] pub struct NSAssertionHandler; ); extern_conformance!( unsafe impl NSObjectProtocol for NSAssertionHandler {} ); impl NSAssertionHandler { extern_methods!( #[unsafe(method(currentHandler))] #[unsafe(method_family = none)] pub fn currentHandler() -> Retained; ); } /// Methods declared on superclass `NSObject`. impl NSAssertionHandler { extern_methods!( #[unsafe(method(init))] #[unsafe(method_family = init)] pub fn init(this: Allocated) -> Retained; #[unsafe(method(new))] #[unsafe(method_family = new)] pub fn new() -> Retained; ); } impl DefaultRetained for NSAssertionHandler { #[inline] fn default_retained() -> Retained { Self::new() } }