Struct objc2_foundation::NSObject
source · #[repr(C)]pub struct NSObject { /* private fields */ }
Expand description
The root class of most Objective-C class hierarchies.
This represents the NSObject
class. The name “NSObject” also
refers to a protocol, see NSObjectProtocol
for that.
Since this class is only available with the Foundation
framework,
objc2
links to it for you.
This is exported under objc2_foundation::NSObject
, you probably
want to use that path instead.
Implementations§
source§impl NSObject
impl NSObject
sourcepub fn init(this: Allocated<NSObject>) -> Retained<NSObject>
pub fn init(this: Allocated<NSObject>) -> Retained<NSObject>
Initialize an already allocated object.
See Apple’s documentation for details.
§Example
use objc2::runtime::NSObject;
use objc2::ClassType;
let obj = NSObject::init(NSObject::alloc());
sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
sourcepub fn class(&self) -> &'static AnyClass
pub fn class(&self) -> &'static AnyClass
Dynamically find the class of this object.
§Example
Check that an instance of NSObject
has the precise class NSObject
.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());
sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load
instead.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load
instead.Use Ivar::load
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut
instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut
instead.Use Ivar::load_mut
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
Trait Implementations§
source§impl AsMut<NSObject> for NSAffineTransform
Available on crate feature NSAffineTransform
only.
impl AsMut<NSObject> for NSAffineTransform
NSAffineTransform
only.source§impl AsMut<NSObject> for NSAppleEventDescriptor
Available on crate feature NSAppleEventDescriptor
only.
impl AsMut<NSObject> for NSAppleEventDescriptor
NSAppleEventDescriptor
only.source§impl AsMut<NSObject> for NSAppleEventManager
Available on crate feature NSAppleEventManager
only.
impl AsMut<NSObject> for NSAppleEventManager
NSAppleEventManager
only.source§impl AsMut<NSObject> for NSAppleScript
Available on crate feature NSAppleScript
only.
impl AsMut<NSObject> for NSAppleScript
NSAppleScript
only.source§impl AsMut<NSObject> for NSArchiver
Available on crate feature NSArchiver
only.
impl AsMut<NSObject> for NSArchiver
NSArchiver
only.source§impl AsMut<NSObject> for NSAssertionHandler
Available on crate feature NSException
only.
impl AsMut<NSObject> for NSAssertionHandler
NSException
only.source§impl AsMut<NSObject> for NSAttributedString
Available on crate feature NSAttributedString
only.
impl AsMut<NSObject> for NSAttributedString
NSAttributedString
only.source§impl AsMut<NSObject> for NSAttributedStringMarkdownParsingOptions
Available on crate feature NSAttributedString
only.
impl AsMut<NSObject> for NSAttributedStringMarkdownParsingOptions
NSAttributedString
only.source§impl AsMut<NSObject> for NSAttributedStringMarkdownSourcePosition
Available on crate feature NSAttributedString
only.
impl AsMut<NSObject> for NSAttributedStringMarkdownSourcePosition
NSAttributedString
only.source§impl AsMut<NSObject> for NSAutoreleasePool
Available on crate feature NSAutoreleasePool
only.
impl AsMut<NSObject> for NSAutoreleasePool
NSAutoreleasePool
only.source§impl AsMut<NSObject> for NSBackgroundActivityScheduler
Available on crate feature NSBackgroundActivityScheduler
only.
impl AsMut<NSObject> for NSBackgroundActivityScheduler
NSBackgroundActivityScheduler
only.source§impl AsMut<NSObject> for NSBlockOperation
Available on crate feature NSOperation
only.
impl AsMut<NSObject> for NSBlockOperation
NSOperation
only.source§impl AsMut<NSObject> for NSBundleResourceRequest
Available on crate feature NSBundle
only.
impl AsMut<NSObject> for NSBundleResourceRequest
NSBundle
only.source§impl AsMut<NSObject> for NSByteCountFormatter
Available on crate feature NSByteCountFormatter
only.
impl AsMut<NSObject> for NSByteCountFormatter
NSByteCountFormatter
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSCache<KeyType, ObjectType>
Available on crate feature NSCache
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSCache<KeyType, ObjectType>
NSCache
only.source§impl AsMut<NSObject> for NSCachedURLResponse
Available on crate feature NSURLCache
only.
impl AsMut<NSObject> for NSCachedURLResponse
NSURLCache
only.source§impl AsMut<NSObject> for NSCalendar
Available on crate feature NSCalendar
only.
impl AsMut<NSObject> for NSCalendar
NSCalendar
only.source§impl AsMut<NSObject> for NSCalendarDate
Available on crate feature NSCalendarDate
only.
impl AsMut<NSObject> for NSCalendarDate
NSCalendarDate
only.source§impl AsMut<NSObject> for NSCharacterSet
Available on crate feature NSCharacterSet
only.
impl AsMut<NSObject> for NSCharacterSet
NSCharacterSet
only.source§impl AsMut<NSObject> for NSClassDescription
Available on crate feature NSClassDescription
only.
impl AsMut<NSObject> for NSClassDescription
NSClassDescription
only.source§impl AsMut<NSObject> for NSCloneCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSCloneCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSCloseCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSCloseCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSComparisonPredicate
Available on crate feature NSComparisonPredicate
only.
impl AsMut<NSObject> for NSComparisonPredicate
NSComparisonPredicate
only.source§impl AsMut<NSObject> for NSCompoundPredicate
Available on crate feature NSCompoundPredicate
only.
impl AsMut<NSObject> for NSCompoundPredicate
NSCompoundPredicate
only.source§impl AsMut<NSObject> for NSCondition
Available on crate feature NSLock
only.
impl AsMut<NSObject> for NSCondition
NSLock
only.source§impl AsMut<NSObject> for NSConditionLock
Available on crate feature NSLock
only.
impl AsMut<NSObject> for NSConditionLock
NSLock
only.source§impl AsMut<NSObject> for NSConnection
Available on crate feature NSConnection
only.
impl AsMut<NSObject> for NSConnection
NSConnection
only.source§impl AsMut<NSObject> for NSConstantString
Available on crate feature NSString
only.
impl AsMut<NSObject> for NSConstantString
NSString
only.source§impl AsMut<NSObject> for NSCountCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSCountCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSCreateCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSCreateCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSDataDetector
Available on crate feature NSRegularExpression
only.
impl AsMut<NSObject> for NSDataDetector
NSRegularExpression
only.source§impl AsMut<NSObject> for NSDateComponents
Available on crate feature NSCalendar
only.
impl AsMut<NSObject> for NSDateComponents
NSCalendar
only.source§impl AsMut<NSObject> for NSDateComponentsFormatter
Available on crate feature NSDateComponentsFormatter
only.
impl AsMut<NSObject> for NSDateComponentsFormatter
NSDateComponentsFormatter
only.source§impl AsMut<NSObject> for NSDateFormatter
Available on crate feature NSDateFormatter
only.
impl AsMut<NSObject> for NSDateFormatter
NSDateFormatter
only.source§impl AsMut<NSObject> for NSDateInterval
Available on crate feature NSDateInterval
only.
impl AsMut<NSObject> for NSDateInterval
NSDateInterval
only.source§impl AsMut<NSObject> for NSDateIntervalFormatter
Available on crate feature NSDateIntervalFormatter
only.
impl AsMut<NSObject> for NSDateIntervalFormatter
NSDateIntervalFormatter
only.source§impl AsMut<NSObject> for NSDecimalNumber
Available on crate feature NSDecimalNumber
only.
impl AsMut<NSObject> for NSDecimalNumber
NSDecimalNumber
only.source§impl AsMut<NSObject> for NSDecimalNumberHandler
Available on crate feature NSDecimalNumber
only.
impl AsMut<NSObject> for NSDecimalNumberHandler
NSDecimalNumber
only.source§impl AsMut<NSObject> for NSDeleteCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSDeleteCommand
NSScriptStandardSuiteCommands
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSDictionary<KeyType, ObjectType>
source§impl AsMut<NSObject> for NSDimension
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSDimension
NSUnit
only.source§impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSDirectoryEnumerator<ObjectType>
Available on crate feature NSFileManager
only.
impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSDirectoryEnumerator<ObjectType>
NSFileManager
only.source§impl AsMut<NSObject> for NSDistantObjectRequest
Available on crate feature NSConnection
only.
impl AsMut<NSObject> for NSDistantObjectRequest
NSConnection
only.source§impl AsMut<NSObject> for NSDistributedLock
Available on crate feature NSDistributedLock
only.
impl AsMut<NSObject> for NSDistributedLock
NSDistributedLock
only.source§impl AsMut<NSObject> for NSDistributedNotificationCenter
Available on crate feature NSDistributedNotificationCenter
only.
impl AsMut<NSObject> for NSDistributedNotificationCenter
NSDistributedNotificationCenter
only.source§impl AsMut<NSObject> for NSEnergyFormatter
Available on crate feature NSEnergyFormatter
only.
impl AsMut<NSObject> for NSEnergyFormatter
NSEnergyFormatter
only.source§impl AsMut<NSObject> for NSException
Available on crate feature NSException
only.
impl AsMut<NSObject> for NSException
NSException
only.source§impl AsMut<NSObject> for NSExistsCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSExistsCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSExpression
Available on crate feature NSExpression
only.
impl AsMut<NSObject> for NSExpression
NSExpression
only.source§impl AsMut<NSObject> for NSExtensionContext
Available on crate feature NSExtensionContext
only.
impl AsMut<NSObject> for NSExtensionContext
NSExtensionContext
only.source§impl AsMut<NSObject> for NSExtensionItem
Available on crate feature NSExtensionItem
only.
impl AsMut<NSObject> for NSExtensionItem
NSExtensionItem
only.source§impl AsMut<NSObject> for NSFileAccessIntent
Available on crate feature NSFileCoordinator
only.
impl AsMut<NSObject> for NSFileAccessIntent
NSFileCoordinator
only.source§impl AsMut<NSObject> for NSFileCoordinator
Available on crate feature NSFileCoordinator
only.
impl AsMut<NSObject> for NSFileCoordinator
NSFileCoordinator
only.source§impl AsMut<NSObject> for NSFileHandle
Available on crate feature NSFileHandle
only.
impl AsMut<NSObject> for NSFileHandle
NSFileHandle
only.source§impl AsMut<NSObject> for NSFileManager
Available on crate feature NSFileManager
only.
impl AsMut<NSObject> for NSFileManager
NSFileManager
only.source§impl AsMut<NSObject> for NSFileProviderService
Available on crate feature NSFileManager
only.
impl AsMut<NSObject> for NSFileProviderService
NSFileManager
only.source§impl AsMut<NSObject> for NSFileSecurity
Available on crate feature NSURL
only.
impl AsMut<NSObject> for NSFileSecurity
NSURL
only.source§impl AsMut<NSObject> for NSFileVersion
Available on crate feature NSFileVersion
only.
impl AsMut<NSObject> for NSFileVersion
NSFileVersion
only.source§impl AsMut<NSObject> for NSFileWrapper
Available on crate feature NSFileWrapper
only.
impl AsMut<NSObject> for NSFileWrapper
NSFileWrapper
only.source§impl AsMut<NSObject> for NSFormatter
Available on crate feature NSFormatter
only.
impl AsMut<NSObject> for NSFormatter
NSFormatter
only.source§impl AsMut<NSObject> for NSGarbageCollector
Available on crate feature NSGarbageCollector
only.
impl AsMut<NSObject> for NSGarbageCollector
NSGarbageCollector
only.source§impl AsMut<NSObject> for NSGetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSGetCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSHTTPCookie
Available on crate feature NSHTTPCookie
only.
impl AsMut<NSObject> for NSHTTPCookie
NSHTTPCookie
only.source§impl AsMut<NSObject> for NSHTTPCookieStorage
Available on crate feature NSHTTPCookieStorage
only.
impl AsMut<NSObject> for NSHTTPCookieStorage
NSHTTPCookieStorage
only.source§impl AsMut<NSObject> for NSHTTPURLResponse
Available on crate feature NSURLResponse
only.
impl AsMut<NSObject> for NSHTTPURLResponse
NSURLResponse
only.source§impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSHashTable<ObjectType>
Available on crate feature NSHashTable
only.
impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSHashTable<ObjectType>
NSHashTable
only.source§impl AsMut<NSObject> for NSISO8601DateFormatter
Available on crate feature NSISO8601DateFormatter
only.
impl AsMut<NSObject> for NSISO8601DateFormatter
NSISO8601DateFormatter
only.source§impl AsMut<NSObject> for NSIndexPath
Available on crate feature NSIndexPath
only.
impl AsMut<NSObject> for NSIndexPath
NSIndexPath
only.source§impl AsMut<NSObject> for NSIndexSet
Available on crate feature NSIndexSet
only.
impl AsMut<NSObject> for NSIndexSet
NSIndexSet
only.source§impl AsMut<NSObject> for NSIndexSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSIndexSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSInflectionRule
Available on crate feature NSInflectionRule
only.
impl AsMut<NSObject> for NSInflectionRule
NSInflectionRule
only.source§impl AsMut<NSObject> for NSInflectionRuleExplicit
Available on crate feature NSInflectionRule
only.
impl AsMut<NSObject> for NSInflectionRuleExplicit
NSInflectionRule
only.source§impl AsMut<NSObject> for NSInputStream
Available on crate feature NSStream
only.
impl AsMut<NSObject> for NSInputStream
NSStream
only.source§impl AsMut<NSObject> for NSInvocation
Available on crate feature NSInvocation
only.
impl AsMut<NSObject> for NSInvocation
NSInvocation
only.source§impl AsMut<NSObject> for NSInvocationOperation
Available on crate feature NSOperation
only.
impl AsMut<NSObject> for NSInvocationOperation
NSOperation
only.source§impl AsMut<NSObject> for NSItemProvider
Available on crate feature NSItemProvider
only.
impl AsMut<NSObject> for NSItemProvider
NSItemProvider
only.source§impl AsMut<NSObject> for NSJSONSerialization
Available on crate feature NSJSONSerialization
only.
impl AsMut<NSObject> for NSJSONSerialization
NSJSONSerialization
only.source§impl AsMut<NSObject> for NSKeyedArchiver
Available on crate feature NSKeyedArchiver
only.
impl AsMut<NSObject> for NSKeyedArchiver
NSKeyedArchiver
only.source§impl AsMut<NSObject> for NSKeyedUnarchiver
Available on crate feature NSKeyedArchiver
only.
impl AsMut<NSObject> for NSKeyedUnarchiver
NSKeyedArchiver
only.source§impl AsMut<NSObject> for NSLengthFormatter
Available on crate feature NSLengthFormatter
only.
impl AsMut<NSObject> for NSLengthFormatter
NSLengthFormatter
only.source§impl AsMut<NSObject> for NSLinguisticTagger
Available on crate feature NSLinguisticTagger
only.
impl AsMut<NSObject> for NSLinguisticTagger
NSLinguisticTagger
only.source§impl AsMut<NSObject> for NSListFormatter
Available on crate feature NSListFormatter
only.
impl AsMut<NSObject> for NSListFormatter
NSListFormatter
only.source§impl AsMut<NSObject> for NSLogicalTest
Available on crate feature NSScriptWhoseTests
only.
impl AsMut<NSObject> for NSLogicalTest
NSScriptWhoseTests
only.source§impl AsMut<NSObject> for NSMachBootstrapServer
Available on crate feature NSPortNameServer
only.
impl AsMut<NSObject> for NSMachBootstrapServer
NSPortNameServer
only.source§impl AsMut<NSObject> for NSMachPort
Available on crate feature NSPort
only.
impl AsMut<NSObject> for NSMachPort
NSPort
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSMapTable<KeyType, ObjectType>
Available on crate feature NSMapTable
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSMapTable<KeyType, ObjectType>
NSMapTable
only.source§impl AsMut<NSObject> for NSMassFormatter
Available on crate feature NSMassFormatter
only.
impl AsMut<NSObject> for NSMassFormatter
NSMassFormatter
only.source§impl<UnitType: ?Sized + Message> AsMut<NSObject> for NSMeasurement<UnitType>
Available on crate feature NSMeasurement
only.
impl<UnitType: ?Sized + Message> AsMut<NSObject> for NSMeasurement<UnitType>
NSMeasurement
only.source§impl AsMut<NSObject> for NSMeasurementFormatter
Available on crate feature NSMeasurementFormatter
only.
impl AsMut<NSObject> for NSMeasurementFormatter
NSMeasurementFormatter
only.source§impl AsMut<NSObject> for NSMessagePort
Available on crate feature NSPort
only.
impl AsMut<NSObject> for NSMessagePort
NSPort
only.source§impl AsMut<NSObject> for NSMessagePortNameServer
Available on crate feature NSPortNameServer
only.
impl AsMut<NSObject> for NSMessagePortNameServer
NSPortNameServer
only.source§impl AsMut<NSObject> for NSMetadataItem
Available on crate feature NSMetadata
only.
impl AsMut<NSObject> for NSMetadataItem
NSMetadata
only.source§impl AsMut<NSObject> for NSMetadataQuery
Available on crate feature NSMetadata
only.
impl AsMut<NSObject> for NSMetadataQuery
NSMetadata
only.source§impl AsMut<NSObject> for NSMetadataQueryAttributeValueTuple
Available on crate feature NSMetadata
only.
impl AsMut<NSObject> for NSMetadataQueryAttributeValueTuple
NSMetadata
only.source§impl AsMut<NSObject> for NSMetadataQueryResultGroup
Available on crate feature NSMetadata
only.
impl AsMut<NSObject> for NSMetadataQueryResultGroup
NSMetadata
only.source§impl AsMut<NSObject> for NSMethodSignature
Available on crate feature NSMethodSignature
only.
impl AsMut<NSObject> for NSMethodSignature
NSMethodSignature
only.source§impl AsMut<NSObject> for NSMiddleSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSMiddleSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSMorphology
Available on crate feature NSMorphology
only.
impl AsMut<NSObject> for NSMorphology
NSMorphology
only.source§impl AsMut<NSObject> for NSMorphologyCustomPronoun
Available on crate feature NSMorphology
only.
impl AsMut<NSObject> for NSMorphologyCustomPronoun
NSMorphology
only.source§impl AsMut<NSObject> for NSMorphologyPronoun
Available on crate feature NSMorphology
only.
impl AsMut<NSObject> for NSMorphologyPronoun
NSMorphology
only.source§impl AsMut<NSObject> for NSMoveCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSMoveCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSMutableAttributedString
Available on crate feature NSAttributedString
only.
impl AsMut<NSObject> for NSMutableAttributedString
NSAttributedString
only.source§impl AsMut<NSObject> for NSMutableCharacterSet
Available on crate feature NSCharacterSet
only.
impl AsMut<NSObject> for NSMutableCharacterSet
NSCharacterSet
only.source§impl AsMut<NSObject> for NSMutableData
Available on crate feature NSData
only.
impl AsMut<NSObject> for NSMutableData
NSData
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSMutableDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsMut<NSObject> for NSMutableDictionary<KeyType, ObjectType>
source§impl AsMut<NSObject> for NSMutableIndexSet
Available on crate feature NSIndexSet
only.
impl AsMut<NSObject> for NSMutableIndexSet
NSIndexSet
only.source§impl AsMut<NSObject> for NSMutableString
Available on crate feature NSString
only.
impl AsMut<NSObject> for NSMutableString
NSString
only.source§impl AsMut<NSObject> for NSMutableURLRequest
Available on crate feature NSURLRequest
only.
impl AsMut<NSObject> for NSMutableURLRequest
NSURLRequest
only.source§impl AsMut<NSObject> for NSNameSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSNameSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSNetService
Available on crate feature NSNetServices
only.
impl AsMut<NSObject> for NSNetService
NSNetServices
only.source§impl AsMut<NSObject> for NSNetServiceBrowser
Available on crate feature NSNetServices
only.
impl AsMut<NSObject> for NSNetServiceBrowser
NSNetServices
only.source§impl AsMut<NSObject> for NSNotification
Available on crate feature NSNotification
only.
impl AsMut<NSObject> for NSNotification
NSNotification
only.source§impl AsMut<NSObject> for NSNotificationCenter
Available on crate feature NSNotification
only.
impl AsMut<NSObject> for NSNotificationCenter
NSNotification
only.source§impl AsMut<NSObject> for NSNotificationQueue
Available on crate feature NSNotificationQueue
only.
impl AsMut<NSObject> for NSNotificationQueue
NSNotificationQueue
only.source§impl AsMut<NSObject> for NSNumberFormatter
Available on crate feature NSNumberFormatter
only.
impl AsMut<NSObject> for NSNumberFormatter
NSNumberFormatter
only.source§impl AsMut<NSObject> for NSOperation
Available on crate feature NSOperation
only.
impl AsMut<NSObject> for NSOperation
NSOperation
only.source§impl AsMut<NSObject> for NSOperationQueue
Available on crate feature NSOperation
only.
impl AsMut<NSObject> for NSOperationQueue
NSOperation
only.source§impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSOrderedCollectionChange<ObjectType>
Available on crate feature NSOrderedCollectionChange
only.
impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSOrderedCollectionChange<ObjectType>
NSOrderedCollectionChange
only.source§impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSOrderedCollectionDifference<ObjectType>
Available on crate feature NSOrderedCollectionDifference
only.
impl<ObjectType: ?Sized + Message> AsMut<NSObject> for NSOrderedCollectionDifference<ObjectType>
NSOrderedCollectionDifference
only.source§impl AsMut<NSObject> for NSOrthography
Available on crate feature NSOrthography
only.
impl AsMut<NSObject> for NSOrthography
NSOrthography
only.source§impl AsMut<NSObject> for NSOutputStream
Available on crate feature NSStream
only.
impl AsMut<NSObject> for NSOutputStream
NSStream
only.source§impl AsMut<NSObject> for NSPersonNameComponents
Available on crate feature NSPersonNameComponents
only.
impl AsMut<NSObject> for NSPersonNameComponents
NSPersonNameComponents
only.source§impl AsMut<NSObject> for NSPersonNameComponentsFormatter
Available on crate feature NSPersonNameComponentsFormatter
only.
impl AsMut<NSObject> for NSPersonNameComponentsFormatter
NSPersonNameComponentsFormatter
only.source§impl AsMut<NSObject> for NSPointerArray
Available on crate feature NSPointerArray
only.
impl AsMut<NSObject> for NSPointerArray
NSPointerArray
only.source§impl AsMut<NSObject> for NSPointerFunctions
Available on crate feature NSPointerFunctions
only.
impl AsMut<NSObject> for NSPointerFunctions
NSPointerFunctions
only.source§impl AsMut<NSObject> for NSPortCoder
Available on crate feature NSPortCoder
only.
impl AsMut<NSObject> for NSPortCoder
NSPortCoder
only.source§impl AsMut<NSObject> for NSPortMessage
Available on crate feature NSPortMessage
only.
impl AsMut<NSObject> for NSPortMessage
NSPortMessage
only.source§impl AsMut<NSObject> for NSPortNameServer
Available on crate feature NSPortNameServer
only.
impl AsMut<NSObject> for NSPortNameServer
NSPortNameServer
only.source§impl AsMut<NSObject> for NSPositionalSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSPositionalSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSPredicate
Available on crate feature NSPredicate
only.
impl AsMut<NSObject> for NSPredicate
NSPredicate
only.source§impl AsMut<NSObject> for NSPresentationIntent
Available on crate feature NSAttributedString
only.
impl AsMut<NSObject> for NSPresentationIntent
NSAttributedString
only.source§impl AsMut<NSObject> for NSProcessInfo
Available on crate feature NSProcessInfo
only.
impl AsMut<NSObject> for NSProcessInfo
NSProcessInfo
only.source§impl AsMut<NSObject> for NSProgress
Available on crate feature NSProgress
only.
impl AsMut<NSObject> for NSProgress
NSProgress
only.source§impl AsMut<NSObject> for NSPropertyListSerialization
Available on crate feature NSPropertyList
only.
impl AsMut<NSObject> for NSPropertyListSerialization
NSPropertyList
only.source§impl AsMut<NSObject> for NSPropertySpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSPropertySpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSPurgeableData
Available on crate feature NSData
only.
impl AsMut<NSObject> for NSPurgeableData
NSData
only.source§impl AsMut<NSObject> for NSQuitCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSQuitCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSRandomSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSRandomSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSRangeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSRangeSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSRecursiveLock
Available on crate feature NSLock
only.
impl AsMut<NSObject> for NSRecursiveLock
NSLock
only.source§impl AsMut<NSObject> for NSRegularExpression
Available on crate feature NSRegularExpression
only.
impl AsMut<NSObject> for NSRegularExpression
NSRegularExpression
only.source§impl AsMut<NSObject> for NSRelativeDateTimeFormatter
Available on crate feature NSRelativeDateTimeFormatter
only.
impl AsMut<NSObject> for NSRelativeDateTimeFormatter
NSRelativeDateTimeFormatter
only.source§impl AsMut<NSObject> for NSRelativeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSRelativeSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSScriptClassDescription
Available on crate feature NSScriptClassDescription
only.
impl AsMut<NSObject> for NSScriptClassDescription
NSScriptClassDescription
only.source§impl AsMut<NSObject> for NSScriptCoercionHandler
Available on crate feature NSScriptCoercionHandler
only.
impl AsMut<NSObject> for NSScriptCoercionHandler
NSScriptCoercionHandler
only.source§impl AsMut<NSObject> for NSScriptCommand
Available on crate feature NSScriptCommand
only.
impl AsMut<NSObject> for NSScriptCommand
NSScriptCommand
only.source§impl AsMut<NSObject> for NSScriptCommandDescription
Available on crate feature NSScriptCommandDescription
only.
impl AsMut<NSObject> for NSScriptCommandDescription
NSScriptCommandDescription
only.source§impl AsMut<NSObject> for NSScriptExecutionContext
Available on crate feature NSScriptExecutionContext
only.
impl AsMut<NSObject> for NSScriptExecutionContext
NSScriptExecutionContext
only.source§impl AsMut<NSObject> for NSScriptObjectSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSScriptObjectSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSScriptSuiteRegistry
Available on crate feature NSScriptSuiteRegistry
only.
impl AsMut<NSObject> for NSScriptSuiteRegistry
NSScriptSuiteRegistry
only.source§impl AsMut<NSObject> for NSScriptWhoseTest
Available on crate feature NSScriptWhoseTests
only.
impl AsMut<NSObject> for NSScriptWhoseTest
NSScriptWhoseTests
only.source§impl AsMut<NSObject> for NSSecureUnarchiveFromDataTransformer
Available on crate feature NSValueTransformer
only.
impl AsMut<NSObject> for NSSecureUnarchiveFromDataTransformer
NSValueTransformer
only.source§impl AsMut<NSObject> for NSSetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsMut<NSObject> for NSSetCommand
NSScriptStandardSuiteCommands
only.source§impl AsMut<NSObject> for NSSimpleCString
Available on crate feature NSString
only.
impl AsMut<NSObject> for NSSimpleCString
NSString
only.source§impl AsMut<NSObject> for NSSocketPort
Available on crate feature NSPort
only.
impl AsMut<NSObject> for NSSocketPort
NSPort
only.source§impl AsMut<NSObject> for NSSocketPortNameServer
Available on crate feature NSPortNameServer
only.
impl AsMut<NSObject> for NSSocketPortNameServer
NSPortNameServer
only.source§impl AsMut<NSObject> for NSSortDescriptor
Available on crate feature NSSortDescriptor
only.
impl AsMut<NSObject> for NSSortDescriptor
NSSortDescriptor
only.source§impl AsMut<NSObject> for NSSpecifierTest
Available on crate feature NSScriptWhoseTests
only.
impl AsMut<NSObject> for NSSpecifierTest
NSScriptWhoseTests
only.source§impl AsMut<NSObject> for NSSpellServer
Available on crate feature NSSpellServer
only.
impl AsMut<NSObject> for NSSpellServer
NSSpellServer
only.source§impl AsMut<NSObject> for NSTermOfAddress
Available on crate feature NSTermOfAddress
only.
impl AsMut<NSObject> for NSTermOfAddress
NSTermOfAddress
only.source§impl AsMut<NSObject> for NSTextCheckingResult
Available on crate feature NSTextCheckingResult
only.
impl AsMut<NSObject> for NSTextCheckingResult
NSTextCheckingResult
only.source§impl AsMut<NSObject> for NSTimeZone
Available on crate feature NSTimeZone
only.
impl AsMut<NSObject> for NSTimeZone
NSTimeZone
only.source§impl AsMut<NSObject> for NSURLAuthenticationChallenge
Available on crate feature NSURLAuthenticationChallenge
only.
impl AsMut<NSObject> for NSURLAuthenticationChallenge
NSURLAuthenticationChallenge
only.source§impl AsMut<NSObject> for NSURLCache
Available on crate feature NSURLCache
only.
impl AsMut<NSObject> for NSURLCache
NSURLCache
only.source§impl AsMut<NSObject> for NSURLComponents
Available on crate feature NSURL
only.
impl AsMut<NSObject> for NSURLComponents
NSURL
only.source§impl AsMut<NSObject> for NSURLConnection
Available on crate feature NSURLConnection
only.
impl AsMut<NSObject> for NSURLConnection
NSURLConnection
only.source§impl AsMut<NSObject> for NSURLCredential
Available on crate feature NSURLCredential
only.
impl AsMut<NSObject> for NSURLCredential
NSURLCredential
only.source§impl AsMut<NSObject> for NSURLCredentialStorage
Available on crate feature NSURLCredentialStorage
only.
impl AsMut<NSObject> for NSURLCredentialStorage
NSURLCredentialStorage
only.source§impl AsMut<NSObject> for NSURLDownload
Available on crate feature NSURLDownload
only.
impl AsMut<NSObject> for NSURLDownload
NSURLDownload
only.source§impl AsMut<NSObject> for NSURLHandle
Available on crate feature NSURLHandle
only.
impl AsMut<NSObject> for NSURLHandle
NSURLHandle
only.source§impl AsMut<NSObject> for NSURLProtectionSpace
Available on crate feature NSURLProtectionSpace
only.
impl AsMut<NSObject> for NSURLProtectionSpace
NSURLProtectionSpace
only.source§impl AsMut<NSObject> for NSURLProtocol
Available on crate feature NSURLProtocol
only.
impl AsMut<NSObject> for NSURLProtocol
NSURLProtocol
only.source§impl AsMut<NSObject> for NSURLQueryItem
Available on crate feature NSURL
only.
impl AsMut<NSObject> for NSURLQueryItem
NSURL
only.source§impl AsMut<NSObject> for NSURLRequest
Available on crate feature NSURLRequest
only.
impl AsMut<NSObject> for NSURLRequest
NSURLRequest
only.source§impl AsMut<NSObject> for NSURLResponse
Available on crate feature NSURLResponse
only.
impl AsMut<NSObject> for NSURLResponse
NSURLResponse
only.source§impl AsMut<NSObject> for NSURLSession
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSession
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionConfiguration
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionConfiguration
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionDataTask
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionDataTask
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionDownloadTask
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionDownloadTask
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionStreamTask
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionStreamTask
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionTask
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionTask
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionTaskMetrics
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionTaskMetrics
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionTaskTransactionMetrics
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionTaskTransactionMetrics
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionUploadTask
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionUploadTask
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionWebSocketMessage
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionWebSocketMessage
NSURLSession
only.source§impl AsMut<NSObject> for NSURLSessionWebSocketTask
Available on crate feature NSURLSession
only.
impl AsMut<NSObject> for NSURLSessionWebSocketTask
NSURLSession
only.source§impl AsMut<NSObject> for NSUbiquitousKeyValueStore
Available on crate feature NSUbiquitousKeyValueStore
only.
impl AsMut<NSObject> for NSUbiquitousKeyValueStore
NSUbiquitousKeyValueStore
only.source§impl AsMut<NSObject> for NSUnarchiver
Available on crate feature NSArchiver
only.
impl AsMut<NSObject> for NSUnarchiver
NSArchiver
only.source§impl AsMut<NSObject> for NSUndoManager
Available on crate feature NSUndoManager
only.
impl AsMut<NSObject> for NSUndoManager
NSUndoManager
only.source§impl AsMut<NSObject> for NSUniqueIDSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSUniqueIDSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSUnitAcceleration
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitAcceleration
NSUnit
only.source§impl AsMut<NSObject> for NSUnitAngle
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitAngle
NSUnit
only.source§impl AsMut<NSObject> for NSUnitArea
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitArea
NSUnit
only.source§impl AsMut<NSObject> for NSUnitConcentrationMass
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitConcentrationMass
NSUnit
only.source§impl AsMut<NSObject> for NSUnitConverter
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitConverter
NSUnit
only.source§impl AsMut<NSObject> for NSUnitConverterLinear
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitConverterLinear
NSUnit
only.source§impl AsMut<NSObject> for NSUnitDispersion
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitDispersion
NSUnit
only.source§impl AsMut<NSObject> for NSUnitDuration
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitDuration
NSUnit
only.source§impl AsMut<NSObject> for NSUnitElectricCharge
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitElectricCharge
NSUnit
only.source§impl AsMut<NSObject> for NSUnitElectricCurrent
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitElectricCurrent
NSUnit
only.source§impl AsMut<NSObject> for NSUnitElectricPotentialDifference
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitElectricPotentialDifference
NSUnit
only.source§impl AsMut<NSObject> for NSUnitElectricResistance
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitElectricResistance
NSUnit
only.source§impl AsMut<NSObject> for NSUnitEnergy
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitEnergy
NSUnit
only.source§impl AsMut<NSObject> for NSUnitFrequency
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitFrequency
NSUnit
only.source§impl AsMut<NSObject> for NSUnitFuelEfficiency
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitFuelEfficiency
NSUnit
only.source§impl AsMut<NSObject> for NSUnitIlluminance
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitIlluminance
NSUnit
only.source§impl AsMut<NSObject> for NSUnitInformationStorage
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitInformationStorage
NSUnit
only.source§impl AsMut<NSObject> for NSUnitLength
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitLength
NSUnit
only.source§impl AsMut<NSObject> for NSUnitMass
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitMass
NSUnit
only.source§impl AsMut<NSObject> for NSUnitPower
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitPower
NSUnit
only.source§impl AsMut<NSObject> for NSUnitPressure
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitPressure
NSUnit
only.source§impl AsMut<NSObject> for NSUnitSpeed
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitSpeed
NSUnit
only.source§impl AsMut<NSObject> for NSUnitTemperature
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitTemperature
NSUnit
only.source§impl AsMut<NSObject> for NSUnitVolume
Available on crate feature NSUnit
only.
impl AsMut<NSObject> for NSUnitVolume
NSUnit
only.source§impl AsMut<NSObject> for NSUserActivity
Available on crate feature NSUserActivity
only.
impl AsMut<NSObject> for NSUserActivity
NSUserActivity
only.source§impl AsMut<NSObject> for NSUserAppleScriptTask
Available on crate feature NSUserScriptTask
only.
impl AsMut<NSObject> for NSUserAppleScriptTask
NSUserScriptTask
only.source§impl AsMut<NSObject> for NSUserAutomatorTask
Available on crate feature NSUserScriptTask
only.
impl AsMut<NSObject> for NSUserAutomatorTask
NSUserScriptTask
only.source§impl AsMut<NSObject> for NSUserDefaults
Available on crate feature NSUserDefaults
only.
impl AsMut<NSObject> for NSUserDefaults
NSUserDefaults
only.source§impl AsMut<NSObject> for NSUserNotification
Available on crate feature NSUserNotification
only.
impl AsMut<NSObject> for NSUserNotification
NSUserNotification
only.source§impl AsMut<NSObject> for NSUserNotificationAction
Available on crate feature NSUserNotification
only.
impl AsMut<NSObject> for NSUserNotificationAction
NSUserNotification
only.source§impl AsMut<NSObject> for NSUserNotificationCenter
Available on crate feature NSUserNotification
only.
impl AsMut<NSObject> for NSUserNotificationCenter
NSUserNotification
only.source§impl AsMut<NSObject> for NSUserScriptTask
Available on crate feature NSUserScriptTask
only.
impl AsMut<NSObject> for NSUserScriptTask
NSUserScriptTask
only.source§impl AsMut<NSObject> for NSUserUnixTask
Available on crate feature NSUserScriptTask
only.
impl AsMut<NSObject> for NSUserUnixTask
NSUserScriptTask
only.source§impl AsMut<NSObject> for NSValueTransformer
Available on crate feature NSValueTransformer
only.
impl AsMut<NSObject> for NSValueTransformer
NSValueTransformer
only.source§impl AsMut<NSObject> for NSWhoseSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsMut<NSObject> for NSWhoseSpecifier
NSScriptObjectSpecifiers
only.source§impl AsMut<NSObject> for NSXMLDTDNode
Available on crate feature NSXMLDTDNode
only.
impl AsMut<NSObject> for NSXMLDTDNode
NSXMLDTDNode
only.source§impl AsMut<NSObject> for NSXMLDocument
Available on crate feature NSXMLDocument
only.
impl AsMut<NSObject> for NSXMLDocument
NSXMLDocument
only.source§impl AsMut<NSObject> for NSXMLElement
Available on crate feature NSXMLElement
only.
impl AsMut<NSObject> for NSXMLElement
NSXMLElement
only.source§impl AsMut<NSObject> for NSXMLParser
Available on crate feature NSXMLParser
only.
impl AsMut<NSObject> for NSXMLParser
NSXMLParser
only.source§impl AsMut<NSObject> for NSXPCCoder
Available on crate feature NSXPCConnection
only.
impl AsMut<NSObject> for NSXPCCoder
NSXPCConnection
only.source§impl AsMut<NSObject> for NSXPCConnection
Available on crate feature NSXPCConnection
only.
impl AsMut<NSObject> for NSXPCConnection
NSXPCConnection
only.source§impl AsMut<NSObject> for NSXPCInterface
Available on crate feature NSXPCConnection
only.
impl AsMut<NSObject> for NSXPCInterface
NSXPCConnection
only.source§impl AsMut<NSObject> for NSXPCListener
Available on crate feature NSXPCConnection
only.
impl AsMut<NSObject> for NSXPCListener
NSXPCConnection
only.source§impl AsMut<NSObject> for NSXPCListenerEndpoint
Available on crate feature NSXPCConnection
only.
impl AsMut<NSObject> for NSXPCListenerEndpoint
NSXPCConnection
only.source§impl AsRef<NSObject> for NSAffineTransform
Available on crate feature NSAffineTransform
only.
impl AsRef<NSObject> for NSAffineTransform
NSAffineTransform
only.source§impl AsRef<NSObject> for NSAppleEventDescriptor
Available on crate feature NSAppleEventDescriptor
only.
impl AsRef<NSObject> for NSAppleEventDescriptor
NSAppleEventDescriptor
only.source§impl AsRef<NSObject> for NSAppleEventManager
Available on crate feature NSAppleEventManager
only.
impl AsRef<NSObject> for NSAppleEventManager
NSAppleEventManager
only.source§impl AsRef<NSObject> for NSAppleScript
Available on crate feature NSAppleScript
only.
impl AsRef<NSObject> for NSAppleScript
NSAppleScript
only.source§impl AsRef<NSObject> for NSArchiver
Available on crate feature NSArchiver
only.
impl AsRef<NSObject> for NSArchiver
NSArchiver
only.source§impl AsRef<NSObject> for NSAssertionHandler
Available on crate feature NSException
only.
impl AsRef<NSObject> for NSAssertionHandler
NSException
only.source§impl AsRef<NSObject> for NSAttributedString
Available on crate feature NSAttributedString
only.
impl AsRef<NSObject> for NSAttributedString
NSAttributedString
only.source§impl AsRef<NSObject> for NSAttributedStringMarkdownParsingOptions
Available on crate feature NSAttributedString
only.
impl AsRef<NSObject> for NSAttributedStringMarkdownParsingOptions
NSAttributedString
only.source§impl AsRef<NSObject> for NSAttributedStringMarkdownSourcePosition
Available on crate feature NSAttributedString
only.
impl AsRef<NSObject> for NSAttributedStringMarkdownSourcePosition
NSAttributedString
only.source§impl AsRef<NSObject> for NSAutoreleasePool
Available on crate feature NSAutoreleasePool
only.
impl AsRef<NSObject> for NSAutoreleasePool
NSAutoreleasePool
only.source§impl AsRef<NSObject> for NSBackgroundActivityScheduler
Available on crate feature NSBackgroundActivityScheduler
only.
impl AsRef<NSObject> for NSBackgroundActivityScheduler
NSBackgroundActivityScheduler
only.source§impl AsRef<NSObject> for NSBlockOperation
Available on crate feature NSOperation
only.
impl AsRef<NSObject> for NSBlockOperation
NSOperation
only.source§impl AsRef<NSObject> for NSBundleResourceRequest
Available on crate feature NSBundle
only.
impl AsRef<NSObject> for NSBundleResourceRequest
NSBundle
only.source§impl AsRef<NSObject> for NSByteCountFormatter
Available on crate feature NSByteCountFormatter
only.
impl AsRef<NSObject> for NSByteCountFormatter
NSByteCountFormatter
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSCache<KeyType, ObjectType>
Available on crate feature NSCache
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSCache<KeyType, ObjectType>
NSCache
only.source§impl AsRef<NSObject> for NSCachedURLResponse
Available on crate feature NSURLCache
only.
impl AsRef<NSObject> for NSCachedURLResponse
NSURLCache
only.source§impl AsRef<NSObject> for NSCalendar
Available on crate feature NSCalendar
only.
impl AsRef<NSObject> for NSCalendar
NSCalendar
only.source§impl AsRef<NSObject> for NSCalendarDate
Available on crate feature NSCalendarDate
only.
impl AsRef<NSObject> for NSCalendarDate
NSCalendarDate
only.source§impl AsRef<NSObject> for NSCharacterSet
Available on crate feature NSCharacterSet
only.
impl AsRef<NSObject> for NSCharacterSet
NSCharacterSet
only.source§impl AsRef<NSObject> for NSClassDescription
Available on crate feature NSClassDescription
only.
impl AsRef<NSObject> for NSClassDescription
NSClassDescription
only.source§impl AsRef<NSObject> for NSCloneCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSCloneCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSCloseCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSCloseCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSComparisonPredicate
Available on crate feature NSComparisonPredicate
only.
impl AsRef<NSObject> for NSComparisonPredicate
NSComparisonPredicate
only.source§impl AsRef<NSObject> for NSCompoundPredicate
Available on crate feature NSCompoundPredicate
only.
impl AsRef<NSObject> for NSCompoundPredicate
NSCompoundPredicate
only.source§impl AsRef<NSObject> for NSCondition
Available on crate feature NSLock
only.
impl AsRef<NSObject> for NSCondition
NSLock
only.source§impl AsRef<NSObject> for NSConditionLock
Available on crate feature NSLock
only.
impl AsRef<NSObject> for NSConditionLock
NSLock
only.source§impl AsRef<NSObject> for NSConnection
Available on crate feature NSConnection
only.
impl AsRef<NSObject> for NSConnection
NSConnection
only.source§impl AsRef<NSObject> for NSConstantString
Available on crate feature NSString
only.
impl AsRef<NSObject> for NSConstantString
NSString
only.source§impl AsRef<NSObject> for NSCountCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSCountCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSCreateCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSCreateCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSDataDetector
Available on crate feature NSRegularExpression
only.
impl AsRef<NSObject> for NSDataDetector
NSRegularExpression
only.source§impl AsRef<NSObject> for NSDateComponents
Available on crate feature NSCalendar
only.
impl AsRef<NSObject> for NSDateComponents
NSCalendar
only.source§impl AsRef<NSObject> for NSDateComponentsFormatter
Available on crate feature NSDateComponentsFormatter
only.
impl AsRef<NSObject> for NSDateComponentsFormatter
NSDateComponentsFormatter
only.source§impl AsRef<NSObject> for NSDateFormatter
Available on crate feature NSDateFormatter
only.
impl AsRef<NSObject> for NSDateFormatter
NSDateFormatter
only.source§impl AsRef<NSObject> for NSDateInterval
Available on crate feature NSDateInterval
only.
impl AsRef<NSObject> for NSDateInterval
NSDateInterval
only.source§impl AsRef<NSObject> for NSDateIntervalFormatter
Available on crate feature NSDateIntervalFormatter
only.
impl AsRef<NSObject> for NSDateIntervalFormatter
NSDateIntervalFormatter
only.source§impl AsRef<NSObject> for NSDecimalNumber
Available on crate feature NSDecimalNumber
only.
impl AsRef<NSObject> for NSDecimalNumber
NSDecimalNumber
only.source§impl AsRef<NSObject> for NSDecimalNumberHandler
Available on crate feature NSDecimalNumber
only.
impl AsRef<NSObject> for NSDecimalNumberHandler
NSDecimalNumber
only.source§impl AsRef<NSObject> for NSDeleteCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSDeleteCommand
NSScriptStandardSuiteCommands
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSDictionary<KeyType, ObjectType>
source§impl AsRef<NSObject> for NSDimension
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSDimension
NSUnit
only.source§impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSDirectoryEnumerator<ObjectType>
Available on crate feature NSFileManager
only.
impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSDirectoryEnumerator<ObjectType>
NSFileManager
only.source§impl AsRef<NSObject> for NSDistantObjectRequest
Available on crate feature NSConnection
only.
impl AsRef<NSObject> for NSDistantObjectRequest
NSConnection
only.source§impl AsRef<NSObject> for NSDistributedLock
Available on crate feature NSDistributedLock
only.
impl AsRef<NSObject> for NSDistributedLock
NSDistributedLock
only.source§impl AsRef<NSObject> for NSDistributedNotificationCenter
Available on crate feature NSDistributedNotificationCenter
only.
impl AsRef<NSObject> for NSDistributedNotificationCenter
NSDistributedNotificationCenter
only.source§impl AsRef<NSObject> for NSEnergyFormatter
Available on crate feature NSEnergyFormatter
only.
impl AsRef<NSObject> for NSEnergyFormatter
NSEnergyFormatter
only.source§impl AsRef<NSObject> for NSException
Available on crate feature NSException
only.
impl AsRef<NSObject> for NSException
NSException
only.source§impl AsRef<NSObject> for NSExistsCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSExistsCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSExpression
Available on crate feature NSExpression
only.
impl AsRef<NSObject> for NSExpression
NSExpression
only.source§impl AsRef<NSObject> for NSExtensionContext
Available on crate feature NSExtensionContext
only.
impl AsRef<NSObject> for NSExtensionContext
NSExtensionContext
only.source§impl AsRef<NSObject> for NSExtensionItem
Available on crate feature NSExtensionItem
only.
impl AsRef<NSObject> for NSExtensionItem
NSExtensionItem
only.source§impl AsRef<NSObject> for NSFileAccessIntent
Available on crate feature NSFileCoordinator
only.
impl AsRef<NSObject> for NSFileAccessIntent
NSFileCoordinator
only.source§impl AsRef<NSObject> for NSFileCoordinator
Available on crate feature NSFileCoordinator
only.
impl AsRef<NSObject> for NSFileCoordinator
NSFileCoordinator
only.source§impl AsRef<NSObject> for NSFileHandle
Available on crate feature NSFileHandle
only.
impl AsRef<NSObject> for NSFileHandle
NSFileHandle
only.source§impl AsRef<NSObject> for NSFileManager
Available on crate feature NSFileManager
only.
impl AsRef<NSObject> for NSFileManager
NSFileManager
only.source§impl AsRef<NSObject> for NSFileProviderService
Available on crate feature NSFileManager
only.
impl AsRef<NSObject> for NSFileProviderService
NSFileManager
only.source§impl AsRef<NSObject> for NSFileSecurity
Available on crate feature NSURL
only.
impl AsRef<NSObject> for NSFileSecurity
NSURL
only.source§impl AsRef<NSObject> for NSFileVersion
Available on crate feature NSFileVersion
only.
impl AsRef<NSObject> for NSFileVersion
NSFileVersion
only.source§impl AsRef<NSObject> for NSFileWrapper
Available on crate feature NSFileWrapper
only.
impl AsRef<NSObject> for NSFileWrapper
NSFileWrapper
only.source§impl AsRef<NSObject> for NSFormatter
Available on crate feature NSFormatter
only.
impl AsRef<NSObject> for NSFormatter
NSFormatter
only.source§impl AsRef<NSObject> for NSGarbageCollector
Available on crate feature NSGarbageCollector
only.
impl AsRef<NSObject> for NSGarbageCollector
NSGarbageCollector
only.source§impl AsRef<NSObject> for NSGetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSGetCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSHTTPCookie
Available on crate feature NSHTTPCookie
only.
impl AsRef<NSObject> for NSHTTPCookie
NSHTTPCookie
only.source§impl AsRef<NSObject> for NSHTTPCookieStorage
Available on crate feature NSHTTPCookieStorage
only.
impl AsRef<NSObject> for NSHTTPCookieStorage
NSHTTPCookieStorage
only.source§impl AsRef<NSObject> for NSHTTPURLResponse
Available on crate feature NSURLResponse
only.
impl AsRef<NSObject> for NSHTTPURLResponse
NSURLResponse
only.source§impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSHashTable<ObjectType>
Available on crate feature NSHashTable
only.
impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSHashTable<ObjectType>
NSHashTable
only.source§impl AsRef<NSObject> for NSISO8601DateFormatter
Available on crate feature NSISO8601DateFormatter
only.
impl AsRef<NSObject> for NSISO8601DateFormatter
NSISO8601DateFormatter
only.source§impl AsRef<NSObject> for NSIndexPath
Available on crate feature NSIndexPath
only.
impl AsRef<NSObject> for NSIndexPath
NSIndexPath
only.source§impl AsRef<NSObject> for NSIndexSet
Available on crate feature NSIndexSet
only.
impl AsRef<NSObject> for NSIndexSet
NSIndexSet
only.source§impl AsRef<NSObject> for NSIndexSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSIndexSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSInflectionRule
Available on crate feature NSInflectionRule
only.
impl AsRef<NSObject> for NSInflectionRule
NSInflectionRule
only.source§impl AsRef<NSObject> for NSInflectionRuleExplicit
Available on crate feature NSInflectionRule
only.
impl AsRef<NSObject> for NSInflectionRuleExplicit
NSInflectionRule
only.source§impl AsRef<NSObject> for NSInputStream
Available on crate feature NSStream
only.
impl AsRef<NSObject> for NSInputStream
NSStream
only.source§impl AsRef<NSObject> for NSInvocation
Available on crate feature NSInvocation
only.
impl AsRef<NSObject> for NSInvocation
NSInvocation
only.source§impl AsRef<NSObject> for NSInvocationOperation
Available on crate feature NSOperation
only.
impl AsRef<NSObject> for NSInvocationOperation
NSOperation
only.source§impl AsRef<NSObject> for NSItemProvider
Available on crate feature NSItemProvider
only.
impl AsRef<NSObject> for NSItemProvider
NSItemProvider
only.source§impl AsRef<NSObject> for NSJSONSerialization
Available on crate feature NSJSONSerialization
only.
impl AsRef<NSObject> for NSJSONSerialization
NSJSONSerialization
only.source§impl AsRef<NSObject> for NSKeyedArchiver
Available on crate feature NSKeyedArchiver
only.
impl AsRef<NSObject> for NSKeyedArchiver
NSKeyedArchiver
only.source§impl AsRef<NSObject> for NSKeyedUnarchiver
Available on crate feature NSKeyedArchiver
only.
impl AsRef<NSObject> for NSKeyedUnarchiver
NSKeyedArchiver
only.source§impl AsRef<NSObject> for NSLengthFormatter
Available on crate feature NSLengthFormatter
only.
impl AsRef<NSObject> for NSLengthFormatter
NSLengthFormatter
only.source§impl AsRef<NSObject> for NSLinguisticTagger
Available on crate feature NSLinguisticTagger
only.
impl AsRef<NSObject> for NSLinguisticTagger
NSLinguisticTagger
only.source§impl AsRef<NSObject> for NSListFormatter
Available on crate feature NSListFormatter
only.
impl AsRef<NSObject> for NSListFormatter
NSListFormatter
only.source§impl AsRef<NSObject> for NSLogicalTest
Available on crate feature NSScriptWhoseTests
only.
impl AsRef<NSObject> for NSLogicalTest
NSScriptWhoseTests
only.source§impl AsRef<NSObject> for NSMachBootstrapServer
Available on crate feature NSPortNameServer
only.
impl AsRef<NSObject> for NSMachBootstrapServer
NSPortNameServer
only.source§impl AsRef<NSObject> for NSMachPort
Available on crate feature NSPort
only.
impl AsRef<NSObject> for NSMachPort
NSPort
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSMapTable<KeyType, ObjectType>
Available on crate feature NSMapTable
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSMapTable<KeyType, ObjectType>
NSMapTable
only.source§impl AsRef<NSObject> for NSMassFormatter
Available on crate feature NSMassFormatter
only.
impl AsRef<NSObject> for NSMassFormatter
NSMassFormatter
only.source§impl<UnitType: ?Sized + Message> AsRef<NSObject> for NSMeasurement<UnitType>
Available on crate feature NSMeasurement
only.
impl<UnitType: ?Sized + Message> AsRef<NSObject> for NSMeasurement<UnitType>
NSMeasurement
only.source§impl AsRef<NSObject> for NSMeasurementFormatter
Available on crate feature NSMeasurementFormatter
only.
impl AsRef<NSObject> for NSMeasurementFormatter
NSMeasurementFormatter
only.source§impl AsRef<NSObject> for NSMessagePort
Available on crate feature NSPort
only.
impl AsRef<NSObject> for NSMessagePort
NSPort
only.source§impl AsRef<NSObject> for NSMessagePortNameServer
Available on crate feature NSPortNameServer
only.
impl AsRef<NSObject> for NSMessagePortNameServer
NSPortNameServer
only.source§impl AsRef<NSObject> for NSMetadataItem
Available on crate feature NSMetadata
only.
impl AsRef<NSObject> for NSMetadataItem
NSMetadata
only.source§impl AsRef<NSObject> for NSMetadataQuery
Available on crate feature NSMetadata
only.
impl AsRef<NSObject> for NSMetadataQuery
NSMetadata
only.source§impl AsRef<NSObject> for NSMetadataQueryAttributeValueTuple
Available on crate feature NSMetadata
only.
impl AsRef<NSObject> for NSMetadataQueryAttributeValueTuple
NSMetadata
only.source§impl AsRef<NSObject> for NSMetadataQueryResultGroup
Available on crate feature NSMetadata
only.
impl AsRef<NSObject> for NSMetadataQueryResultGroup
NSMetadata
only.source§impl AsRef<NSObject> for NSMethodSignature
Available on crate feature NSMethodSignature
only.
impl AsRef<NSObject> for NSMethodSignature
NSMethodSignature
only.source§impl AsRef<NSObject> for NSMiddleSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSMiddleSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSMorphology
Available on crate feature NSMorphology
only.
impl AsRef<NSObject> for NSMorphology
NSMorphology
only.source§impl AsRef<NSObject> for NSMorphologyCustomPronoun
Available on crate feature NSMorphology
only.
impl AsRef<NSObject> for NSMorphologyCustomPronoun
NSMorphology
only.source§impl AsRef<NSObject> for NSMorphologyPronoun
Available on crate feature NSMorphology
only.
impl AsRef<NSObject> for NSMorphologyPronoun
NSMorphology
only.source§impl AsRef<NSObject> for NSMoveCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSMoveCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSMutableAttributedString
Available on crate feature NSAttributedString
only.
impl AsRef<NSObject> for NSMutableAttributedString
NSAttributedString
only.source§impl AsRef<NSObject> for NSMutableCharacterSet
Available on crate feature NSCharacterSet
only.
impl AsRef<NSObject> for NSMutableCharacterSet
NSCharacterSet
only.source§impl AsRef<NSObject> for NSMutableData
Available on crate feature NSData
only.
impl AsRef<NSObject> for NSMutableData
NSData
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSMutableDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> AsRef<NSObject> for NSMutableDictionary<KeyType, ObjectType>
source§impl AsRef<NSObject> for NSMutableIndexSet
Available on crate feature NSIndexSet
only.
impl AsRef<NSObject> for NSMutableIndexSet
NSIndexSet
only.source§impl AsRef<NSObject> for NSMutableString
Available on crate feature NSString
only.
impl AsRef<NSObject> for NSMutableString
NSString
only.source§impl AsRef<NSObject> for NSMutableURLRequest
Available on crate feature NSURLRequest
only.
impl AsRef<NSObject> for NSMutableURLRequest
NSURLRequest
only.source§impl AsRef<NSObject> for NSNameSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSNameSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSNetService
Available on crate feature NSNetServices
only.
impl AsRef<NSObject> for NSNetService
NSNetServices
only.source§impl AsRef<NSObject> for NSNetServiceBrowser
Available on crate feature NSNetServices
only.
impl AsRef<NSObject> for NSNetServiceBrowser
NSNetServices
only.source§impl AsRef<NSObject> for NSNotification
Available on crate feature NSNotification
only.
impl AsRef<NSObject> for NSNotification
NSNotification
only.source§impl AsRef<NSObject> for NSNotificationCenter
Available on crate feature NSNotification
only.
impl AsRef<NSObject> for NSNotificationCenter
NSNotification
only.source§impl AsRef<NSObject> for NSNotificationQueue
Available on crate feature NSNotificationQueue
only.
impl AsRef<NSObject> for NSNotificationQueue
NSNotificationQueue
only.source§impl AsRef<NSObject> for NSNumberFormatter
Available on crate feature NSNumberFormatter
only.
impl AsRef<NSObject> for NSNumberFormatter
NSNumberFormatter
only.source§impl AsRef<NSObject> for NSOperation
Available on crate feature NSOperation
only.
impl AsRef<NSObject> for NSOperation
NSOperation
only.source§impl AsRef<NSObject> for NSOperationQueue
Available on crate feature NSOperation
only.
impl AsRef<NSObject> for NSOperationQueue
NSOperation
only.source§impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSOrderedCollectionChange<ObjectType>
Available on crate feature NSOrderedCollectionChange
only.
impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSOrderedCollectionChange<ObjectType>
NSOrderedCollectionChange
only.source§impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSOrderedCollectionDifference<ObjectType>
Available on crate feature NSOrderedCollectionDifference
only.
impl<ObjectType: ?Sized + Message> AsRef<NSObject> for NSOrderedCollectionDifference<ObjectType>
NSOrderedCollectionDifference
only.source§impl AsRef<NSObject> for NSOrthography
Available on crate feature NSOrthography
only.
impl AsRef<NSObject> for NSOrthography
NSOrthography
only.source§impl AsRef<NSObject> for NSOutputStream
Available on crate feature NSStream
only.
impl AsRef<NSObject> for NSOutputStream
NSStream
only.source§impl AsRef<NSObject> for NSPersonNameComponents
Available on crate feature NSPersonNameComponents
only.
impl AsRef<NSObject> for NSPersonNameComponents
NSPersonNameComponents
only.source§impl AsRef<NSObject> for NSPersonNameComponentsFormatter
Available on crate feature NSPersonNameComponentsFormatter
only.
impl AsRef<NSObject> for NSPersonNameComponentsFormatter
NSPersonNameComponentsFormatter
only.source§impl AsRef<NSObject> for NSPointerArray
Available on crate feature NSPointerArray
only.
impl AsRef<NSObject> for NSPointerArray
NSPointerArray
only.source§impl AsRef<NSObject> for NSPointerFunctions
Available on crate feature NSPointerFunctions
only.
impl AsRef<NSObject> for NSPointerFunctions
NSPointerFunctions
only.source§impl AsRef<NSObject> for NSPortCoder
Available on crate feature NSPortCoder
only.
impl AsRef<NSObject> for NSPortCoder
NSPortCoder
only.source§impl AsRef<NSObject> for NSPortMessage
Available on crate feature NSPortMessage
only.
impl AsRef<NSObject> for NSPortMessage
NSPortMessage
only.source§impl AsRef<NSObject> for NSPortNameServer
Available on crate feature NSPortNameServer
only.
impl AsRef<NSObject> for NSPortNameServer
NSPortNameServer
only.source§impl AsRef<NSObject> for NSPositionalSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSPositionalSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSPredicate
Available on crate feature NSPredicate
only.
impl AsRef<NSObject> for NSPredicate
NSPredicate
only.source§impl AsRef<NSObject> for NSPresentationIntent
Available on crate feature NSAttributedString
only.
impl AsRef<NSObject> for NSPresentationIntent
NSAttributedString
only.source§impl AsRef<NSObject> for NSProcessInfo
Available on crate feature NSProcessInfo
only.
impl AsRef<NSObject> for NSProcessInfo
NSProcessInfo
only.source§impl AsRef<NSObject> for NSProgress
Available on crate feature NSProgress
only.
impl AsRef<NSObject> for NSProgress
NSProgress
only.source§impl AsRef<NSObject> for NSPropertyListSerialization
Available on crate feature NSPropertyList
only.
impl AsRef<NSObject> for NSPropertyListSerialization
NSPropertyList
only.source§impl AsRef<NSObject> for NSPropertySpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSPropertySpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSPurgeableData
Available on crate feature NSData
only.
impl AsRef<NSObject> for NSPurgeableData
NSData
only.source§impl AsRef<NSObject> for NSQuitCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSQuitCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSRandomSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSRandomSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSRangeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSRangeSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSRecursiveLock
Available on crate feature NSLock
only.
impl AsRef<NSObject> for NSRecursiveLock
NSLock
only.source§impl AsRef<NSObject> for NSRegularExpression
Available on crate feature NSRegularExpression
only.
impl AsRef<NSObject> for NSRegularExpression
NSRegularExpression
only.source§impl AsRef<NSObject> for NSRelativeDateTimeFormatter
Available on crate feature NSRelativeDateTimeFormatter
only.
impl AsRef<NSObject> for NSRelativeDateTimeFormatter
NSRelativeDateTimeFormatter
only.source§impl AsRef<NSObject> for NSRelativeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSRelativeSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSScriptClassDescription
Available on crate feature NSScriptClassDescription
only.
impl AsRef<NSObject> for NSScriptClassDescription
NSScriptClassDescription
only.source§impl AsRef<NSObject> for NSScriptCoercionHandler
Available on crate feature NSScriptCoercionHandler
only.
impl AsRef<NSObject> for NSScriptCoercionHandler
NSScriptCoercionHandler
only.source§impl AsRef<NSObject> for NSScriptCommand
Available on crate feature NSScriptCommand
only.
impl AsRef<NSObject> for NSScriptCommand
NSScriptCommand
only.source§impl AsRef<NSObject> for NSScriptCommandDescription
Available on crate feature NSScriptCommandDescription
only.
impl AsRef<NSObject> for NSScriptCommandDescription
NSScriptCommandDescription
only.source§impl AsRef<NSObject> for NSScriptExecutionContext
Available on crate feature NSScriptExecutionContext
only.
impl AsRef<NSObject> for NSScriptExecutionContext
NSScriptExecutionContext
only.source§impl AsRef<NSObject> for NSScriptObjectSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSScriptObjectSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSScriptSuiteRegistry
Available on crate feature NSScriptSuiteRegistry
only.
impl AsRef<NSObject> for NSScriptSuiteRegistry
NSScriptSuiteRegistry
only.source§impl AsRef<NSObject> for NSScriptWhoseTest
Available on crate feature NSScriptWhoseTests
only.
impl AsRef<NSObject> for NSScriptWhoseTest
NSScriptWhoseTests
only.source§impl AsRef<NSObject> for NSSecureUnarchiveFromDataTransformer
Available on crate feature NSValueTransformer
only.
impl AsRef<NSObject> for NSSecureUnarchiveFromDataTransformer
NSValueTransformer
only.source§impl AsRef<NSObject> for NSSetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl AsRef<NSObject> for NSSetCommand
NSScriptStandardSuiteCommands
only.source§impl AsRef<NSObject> for NSSimpleCString
Available on crate feature NSString
only.
impl AsRef<NSObject> for NSSimpleCString
NSString
only.source§impl AsRef<NSObject> for NSSocketPort
Available on crate feature NSPort
only.
impl AsRef<NSObject> for NSSocketPort
NSPort
only.source§impl AsRef<NSObject> for NSSocketPortNameServer
Available on crate feature NSPortNameServer
only.
impl AsRef<NSObject> for NSSocketPortNameServer
NSPortNameServer
only.source§impl AsRef<NSObject> for NSSortDescriptor
Available on crate feature NSSortDescriptor
only.
impl AsRef<NSObject> for NSSortDescriptor
NSSortDescriptor
only.source§impl AsRef<NSObject> for NSSpecifierTest
Available on crate feature NSScriptWhoseTests
only.
impl AsRef<NSObject> for NSSpecifierTest
NSScriptWhoseTests
only.source§impl AsRef<NSObject> for NSSpellServer
Available on crate feature NSSpellServer
only.
impl AsRef<NSObject> for NSSpellServer
NSSpellServer
only.source§impl AsRef<NSObject> for NSTermOfAddress
Available on crate feature NSTermOfAddress
only.
impl AsRef<NSObject> for NSTermOfAddress
NSTermOfAddress
only.source§impl AsRef<NSObject> for NSTextCheckingResult
Available on crate feature NSTextCheckingResult
only.
impl AsRef<NSObject> for NSTextCheckingResult
NSTextCheckingResult
only.source§impl AsRef<NSObject> for NSTimeZone
Available on crate feature NSTimeZone
only.
impl AsRef<NSObject> for NSTimeZone
NSTimeZone
only.source§impl AsRef<NSObject> for NSURLAuthenticationChallenge
Available on crate feature NSURLAuthenticationChallenge
only.
impl AsRef<NSObject> for NSURLAuthenticationChallenge
NSURLAuthenticationChallenge
only.source§impl AsRef<NSObject> for NSURLCache
Available on crate feature NSURLCache
only.
impl AsRef<NSObject> for NSURLCache
NSURLCache
only.source§impl AsRef<NSObject> for NSURLComponents
Available on crate feature NSURL
only.
impl AsRef<NSObject> for NSURLComponents
NSURL
only.source§impl AsRef<NSObject> for NSURLConnection
Available on crate feature NSURLConnection
only.
impl AsRef<NSObject> for NSURLConnection
NSURLConnection
only.source§impl AsRef<NSObject> for NSURLCredential
Available on crate feature NSURLCredential
only.
impl AsRef<NSObject> for NSURLCredential
NSURLCredential
only.source§impl AsRef<NSObject> for NSURLCredentialStorage
Available on crate feature NSURLCredentialStorage
only.
impl AsRef<NSObject> for NSURLCredentialStorage
NSURLCredentialStorage
only.source§impl AsRef<NSObject> for NSURLDownload
Available on crate feature NSURLDownload
only.
impl AsRef<NSObject> for NSURLDownload
NSURLDownload
only.source§impl AsRef<NSObject> for NSURLHandle
Available on crate feature NSURLHandle
only.
impl AsRef<NSObject> for NSURLHandle
NSURLHandle
only.source§impl AsRef<NSObject> for NSURLProtectionSpace
Available on crate feature NSURLProtectionSpace
only.
impl AsRef<NSObject> for NSURLProtectionSpace
NSURLProtectionSpace
only.source§impl AsRef<NSObject> for NSURLProtocol
Available on crate feature NSURLProtocol
only.
impl AsRef<NSObject> for NSURLProtocol
NSURLProtocol
only.source§impl AsRef<NSObject> for NSURLQueryItem
Available on crate feature NSURL
only.
impl AsRef<NSObject> for NSURLQueryItem
NSURL
only.source§impl AsRef<NSObject> for NSURLRequest
Available on crate feature NSURLRequest
only.
impl AsRef<NSObject> for NSURLRequest
NSURLRequest
only.source§impl AsRef<NSObject> for NSURLResponse
Available on crate feature NSURLResponse
only.
impl AsRef<NSObject> for NSURLResponse
NSURLResponse
only.source§impl AsRef<NSObject> for NSURLSession
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSession
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionConfiguration
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionConfiguration
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionDataTask
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionDataTask
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionDownloadTask
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionDownloadTask
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionStreamTask
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionStreamTask
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionTask
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionTask
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionTaskMetrics
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionTaskMetrics
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionTaskTransactionMetrics
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionTaskTransactionMetrics
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionUploadTask
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionUploadTask
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionWebSocketMessage
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionWebSocketMessage
NSURLSession
only.source§impl AsRef<NSObject> for NSURLSessionWebSocketTask
Available on crate feature NSURLSession
only.
impl AsRef<NSObject> for NSURLSessionWebSocketTask
NSURLSession
only.source§impl AsRef<NSObject> for NSUbiquitousKeyValueStore
Available on crate feature NSUbiquitousKeyValueStore
only.
impl AsRef<NSObject> for NSUbiquitousKeyValueStore
NSUbiquitousKeyValueStore
only.source§impl AsRef<NSObject> for NSUnarchiver
Available on crate feature NSArchiver
only.
impl AsRef<NSObject> for NSUnarchiver
NSArchiver
only.source§impl AsRef<NSObject> for NSUndoManager
Available on crate feature NSUndoManager
only.
impl AsRef<NSObject> for NSUndoManager
NSUndoManager
only.source§impl AsRef<NSObject> for NSUniqueIDSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSUniqueIDSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSUnitAcceleration
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitAcceleration
NSUnit
only.source§impl AsRef<NSObject> for NSUnitAngle
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitAngle
NSUnit
only.source§impl AsRef<NSObject> for NSUnitArea
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitArea
NSUnit
only.source§impl AsRef<NSObject> for NSUnitConcentrationMass
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitConcentrationMass
NSUnit
only.source§impl AsRef<NSObject> for NSUnitConverter
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitConverter
NSUnit
only.source§impl AsRef<NSObject> for NSUnitConverterLinear
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitConverterLinear
NSUnit
only.source§impl AsRef<NSObject> for NSUnitDispersion
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitDispersion
NSUnit
only.source§impl AsRef<NSObject> for NSUnitDuration
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitDuration
NSUnit
only.source§impl AsRef<NSObject> for NSUnitElectricCharge
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitElectricCharge
NSUnit
only.source§impl AsRef<NSObject> for NSUnitElectricCurrent
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitElectricCurrent
NSUnit
only.source§impl AsRef<NSObject> for NSUnitElectricPotentialDifference
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitElectricPotentialDifference
NSUnit
only.source§impl AsRef<NSObject> for NSUnitElectricResistance
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitElectricResistance
NSUnit
only.source§impl AsRef<NSObject> for NSUnitEnergy
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitEnergy
NSUnit
only.source§impl AsRef<NSObject> for NSUnitFrequency
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitFrequency
NSUnit
only.source§impl AsRef<NSObject> for NSUnitFuelEfficiency
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitFuelEfficiency
NSUnit
only.source§impl AsRef<NSObject> for NSUnitIlluminance
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitIlluminance
NSUnit
only.source§impl AsRef<NSObject> for NSUnitInformationStorage
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitInformationStorage
NSUnit
only.source§impl AsRef<NSObject> for NSUnitLength
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitLength
NSUnit
only.source§impl AsRef<NSObject> for NSUnitMass
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitMass
NSUnit
only.source§impl AsRef<NSObject> for NSUnitPower
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitPower
NSUnit
only.source§impl AsRef<NSObject> for NSUnitPressure
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitPressure
NSUnit
only.source§impl AsRef<NSObject> for NSUnitSpeed
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitSpeed
NSUnit
only.source§impl AsRef<NSObject> for NSUnitTemperature
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitTemperature
NSUnit
only.source§impl AsRef<NSObject> for NSUnitVolume
Available on crate feature NSUnit
only.
impl AsRef<NSObject> for NSUnitVolume
NSUnit
only.source§impl AsRef<NSObject> for NSUserActivity
Available on crate feature NSUserActivity
only.
impl AsRef<NSObject> for NSUserActivity
NSUserActivity
only.source§impl AsRef<NSObject> for NSUserAppleScriptTask
Available on crate feature NSUserScriptTask
only.
impl AsRef<NSObject> for NSUserAppleScriptTask
NSUserScriptTask
only.source§impl AsRef<NSObject> for NSUserAutomatorTask
Available on crate feature NSUserScriptTask
only.
impl AsRef<NSObject> for NSUserAutomatorTask
NSUserScriptTask
only.source§impl AsRef<NSObject> for NSUserDefaults
Available on crate feature NSUserDefaults
only.
impl AsRef<NSObject> for NSUserDefaults
NSUserDefaults
only.source§impl AsRef<NSObject> for NSUserNotification
Available on crate feature NSUserNotification
only.
impl AsRef<NSObject> for NSUserNotification
NSUserNotification
only.source§impl AsRef<NSObject> for NSUserNotificationAction
Available on crate feature NSUserNotification
only.
impl AsRef<NSObject> for NSUserNotificationAction
NSUserNotification
only.source§impl AsRef<NSObject> for NSUserNotificationCenter
Available on crate feature NSUserNotification
only.
impl AsRef<NSObject> for NSUserNotificationCenter
NSUserNotification
only.source§impl AsRef<NSObject> for NSUserScriptTask
Available on crate feature NSUserScriptTask
only.
impl AsRef<NSObject> for NSUserScriptTask
NSUserScriptTask
only.source§impl AsRef<NSObject> for NSUserUnixTask
Available on crate feature NSUserScriptTask
only.
impl AsRef<NSObject> for NSUserUnixTask
NSUserScriptTask
only.source§impl AsRef<NSObject> for NSValueTransformer
Available on crate feature NSValueTransformer
only.
impl AsRef<NSObject> for NSValueTransformer
NSValueTransformer
only.source§impl AsRef<NSObject> for NSWhoseSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl AsRef<NSObject> for NSWhoseSpecifier
NSScriptObjectSpecifiers
only.source§impl AsRef<NSObject> for NSXMLDTDNode
Available on crate feature NSXMLDTDNode
only.
impl AsRef<NSObject> for NSXMLDTDNode
NSXMLDTDNode
only.source§impl AsRef<NSObject> for NSXMLDocument
Available on crate feature NSXMLDocument
only.
impl AsRef<NSObject> for NSXMLDocument
NSXMLDocument
only.source§impl AsRef<NSObject> for NSXMLElement
Available on crate feature NSXMLElement
only.
impl AsRef<NSObject> for NSXMLElement
NSXMLElement
only.source§impl AsRef<NSObject> for NSXMLParser
Available on crate feature NSXMLParser
only.
impl AsRef<NSObject> for NSXMLParser
NSXMLParser
only.source§impl AsRef<NSObject> for NSXPCCoder
Available on crate feature NSXPCConnection
only.
impl AsRef<NSObject> for NSXPCCoder
NSXPCConnection
only.source§impl AsRef<NSObject> for NSXPCConnection
Available on crate feature NSXPCConnection
only.
impl AsRef<NSObject> for NSXPCConnection
NSXPCConnection
only.source§impl AsRef<NSObject> for NSXPCInterface
Available on crate feature NSXPCConnection
only.
impl AsRef<NSObject> for NSXPCInterface
NSXPCConnection
only.source§impl AsRef<NSObject> for NSXPCListener
Available on crate feature NSXPCConnection
only.
impl AsRef<NSObject> for NSXPCListener
NSXPCConnection
only.source§impl AsRef<NSObject> for NSXPCListenerEndpoint
Available on crate feature NSXPCConnection
only.
impl AsRef<NSObject> for NSXPCListenerEndpoint
NSXPCConnection
only.source§impl Borrow<NSObject> for NSAffineTransform
Available on crate feature NSAffineTransform
only.
impl Borrow<NSObject> for NSAffineTransform
NSAffineTransform
only.source§impl Borrow<NSObject> for NSAppleEventDescriptor
Available on crate feature NSAppleEventDescriptor
only.
impl Borrow<NSObject> for NSAppleEventDescriptor
NSAppleEventDescriptor
only.source§impl Borrow<NSObject> for NSAppleEventManager
Available on crate feature NSAppleEventManager
only.
impl Borrow<NSObject> for NSAppleEventManager
NSAppleEventManager
only.source§impl Borrow<NSObject> for NSAppleScript
Available on crate feature NSAppleScript
only.
impl Borrow<NSObject> for NSAppleScript
NSAppleScript
only.source§impl Borrow<NSObject> for NSArchiver
Available on crate feature NSArchiver
only.
impl Borrow<NSObject> for NSArchiver
NSArchiver
only.source§impl Borrow<NSObject> for NSAssertionHandler
Available on crate feature NSException
only.
impl Borrow<NSObject> for NSAssertionHandler
NSException
only.source§impl Borrow<NSObject> for NSAttributedString
Available on crate feature NSAttributedString
only.
impl Borrow<NSObject> for NSAttributedString
NSAttributedString
only.source§impl Borrow<NSObject> for NSAttributedStringMarkdownParsingOptions
Available on crate feature NSAttributedString
only.
impl Borrow<NSObject> for NSAttributedStringMarkdownParsingOptions
NSAttributedString
only.source§impl Borrow<NSObject> for NSAttributedStringMarkdownSourcePosition
Available on crate feature NSAttributedString
only.
impl Borrow<NSObject> for NSAttributedStringMarkdownSourcePosition
NSAttributedString
only.source§impl Borrow<NSObject> for NSAutoreleasePool
Available on crate feature NSAutoreleasePool
only.
impl Borrow<NSObject> for NSAutoreleasePool
NSAutoreleasePool
only.source§impl Borrow<NSObject> for NSBackgroundActivityScheduler
Available on crate feature NSBackgroundActivityScheduler
only.
impl Borrow<NSObject> for NSBackgroundActivityScheduler
NSBackgroundActivityScheduler
only.source§impl Borrow<NSObject> for NSBlockOperation
Available on crate feature NSOperation
only.
impl Borrow<NSObject> for NSBlockOperation
NSOperation
only.source§impl Borrow<NSObject> for NSBundleResourceRequest
Available on crate feature NSBundle
only.
impl Borrow<NSObject> for NSBundleResourceRequest
NSBundle
only.source§impl Borrow<NSObject> for NSByteCountFormatter
Available on crate feature NSByteCountFormatter
only.
impl Borrow<NSObject> for NSByteCountFormatter
NSByteCountFormatter
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSCache<KeyType, ObjectType>
Available on crate feature NSCache
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSCache<KeyType, ObjectType>
NSCache
only.source§impl Borrow<NSObject> for NSCachedURLResponse
Available on crate feature NSURLCache
only.
impl Borrow<NSObject> for NSCachedURLResponse
NSURLCache
only.source§impl Borrow<NSObject> for NSCalendar
Available on crate feature NSCalendar
only.
impl Borrow<NSObject> for NSCalendar
NSCalendar
only.source§impl Borrow<NSObject> for NSCalendarDate
Available on crate feature NSCalendarDate
only.
impl Borrow<NSObject> for NSCalendarDate
NSCalendarDate
only.source§impl Borrow<NSObject> for NSCharacterSet
Available on crate feature NSCharacterSet
only.
impl Borrow<NSObject> for NSCharacterSet
NSCharacterSet
only.source§impl Borrow<NSObject> for NSClassDescription
Available on crate feature NSClassDescription
only.
impl Borrow<NSObject> for NSClassDescription
NSClassDescription
only.source§impl Borrow<NSObject> for NSCloneCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSCloneCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSCloseCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSCloseCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSComparisonPredicate
Available on crate feature NSComparisonPredicate
only.
impl Borrow<NSObject> for NSComparisonPredicate
NSComparisonPredicate
only.source§impl Borrow<NSObject> for NSCompoundPredicate
Available on crate feature NSCompoundPredicate
only.
impl Borrow<NSObject> for NSCompoundPredicate
NSCompoundPredicate
only.source§impl Borrow<NSObject> for NSCondition
Available on crate feature NSLock
only.
impl Borrow<NSObject> for NSCondition
NSLock
only.source§impl Borrow<NSObject> for NSConditionLock
Available on crate feature NSLock
only.
impl Borrow<NSObject> for NSConditionLock
NSLock
only.source§impl Borrow<NSObject> for NSConnection
Available on crate feature NSConnection
only.
impl Borrow<NSObject> for NSConnection
NSConnection
only.source§impl Borrow<NSObject> for NSConstantString
Available on crate feature NSString
only.
impl Borrow<NSObject> for NSConstantString
NSString
only.source§impl Borrow<NSObject> for NSCountCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSCountCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSCreateCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSCreateCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSDataDetector
Available on crate feature NSRegularExpression
only.
impl Borrow<NSObject> for NSDataDetector
NSRegularExpression
only.source§impl Borrow<NSObject> for NSDateComponents
Available on crate feature NSCalendar
only.
impl Borrow<NSObject> for NSDateComponents
NSCalendar
only.source§impl Borrow<NSObject> for NSDateComponentsFormatter
Available on crate feature NSDateComponentsFormatter
only.
impl Borrow<NSObject> for NSDateComponentsFormatter
NSDateComponentsFormatter
only.source§impl Borrow<NSObject> for NSDateFormatter
Available on crate feature NSDateFormatter
only.
impl Borrow<NSObject> for NSDateFormatter
NSDateFormatter
only.source§impl Borrow<NSObject> for NSDateInterval
Available on crate feature NSDateInterval
only.
impl Borrow<NSObject> for NSDateInterval
NSDateInterval
only.source§impl Borrow<NSObject> for NSDateIntervalFormatter
Available on crate feature NSDateIntervalFormatter
only.
impl Borrow<NSObject> for NSDateIntervalFormatter
NSDateIntervalFormatter
only.source§impl Borrow<NSObject> for NSDecimalNumber
Available on crate feature NSDecimalNumber
only.
impl Borrow<NSObject> for NSDecimalNumber
NSDecimalNumber
only.source§impl Borrow<NSObject> for NSDecimalNumberHandler
Available on crate feature NSDecimalNumber
only.
impl Borrow<NSObject> for NSDecimalNumberHandler
NSDecimalNumber
only.source§impl Borrow<NSObject> for NSDeleteCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSDeleteCommand
NSScriptStandardSuiteCommands
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSDictionary<KeyType, ObjectType>
source§impl Borrow<NSObject> for NSDimension
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSDimension
NSUnit
only.source§impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSDirectoryEnumerator<ObjectType>
Available on crate feature NSFileManager
only.
impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSDirectoryEnumerator<ObjectType>
NSFileManager
only.source§impl Borrow<NSObject> for NSDistantObjectRequest
Available on crate feature NSConnection
only.
impl Borrow<NSObject> for NSDistantObjectRequest
NSConnection
only.source§impl Borrow<NSObject> for NSDistributedLock
Available on crate feature NSDistributedLock
only.
impl Borrow<NSObject> for NSDistributedLock
NSDistributedLock
only.source§impl Borrow<NSObject> for NSDistributedNotificationCenter
Available on crate feature NSDistributedNotificationCenter
only.
impl Borrow<NSObject> for NSDistributedNotificationCenter
NSDistributedNotificationCenter
only.source§impl Borrow<NSObject> for NSEnergyFormatter
Available on crate feature NSEnergyFormatter
only.
impl Borrow<NSObject> for NSEnergyFormatter
NSEnergyFormatter
only.source§impl Borrow<NSObject> for NSException
Available on crate feature NSException
only.
impl Borrow<NSObject> for NSException
NSException
only.source§impl Borrow<NSObject> for NSExistsCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSExistsCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSExpression
Available on crate feature NSExpression
only.
impl Borrow<NSObject> for NSExpression
NSExpression
only.source§impl Borrow<NSObject> for NSExtensionContext
Available on crate feature NSExtensionContext
only.
impl Borrow<NSObject> for NSExtensionContext
NSExtensionContext
only.source§impl Borrow<NSObject> for NSExtensionItem
Available on crate feature NSExtensionItem
only.
impl Borrow<NSObject> for NSExtensionItem
NSExtensionItem
only.source§impl Borrow<NSObject> for NSFileAccessIntent
Available on crate feature NSFileCoordinator
only.
impl Borrow<NSObject> for NSFileAccessIntent
NSFileCoordinator
only.source§impl Borrow<NSObject> for NSFileCoordinator
Available on crate feature NSFileCoordinator
only.
impl Borrow<NSObject> for NSFileCoordinator
NSFileCoordinator
only.source§impl Borrow<NSObject> for NSFileHandle
Available on crate feature NSFileHandle
only.
impl Borrow<NSObject> for NSFileHandle
NSFileHandle
only.source§impl Borrow<NSObject> for NSFileManager
Available on crate feature NSFileManager
only.
impl Borrow<NSObject> for NSFileManager
NSFileManager
only.source§impl Borrow<NSObject> for NSFileProviderService
Available on crate feature NSFileManager
only.
impl Borrow<NSObject> for NSFileProviderService
NSFileManager
only.source§impl Borrow<NSObject> for NSFileSecurity
Available on crate feature NSURL
only.
impl Borrow<NSObject> for NSFileSecurity
NSURL
only.source§impl Borrow<NSObject> for NSFileVersion
Available on crate feature NSFileVersion
only.
impl Borrow<NSObject> for NSFileVersion
NSFileVersion
only.source§impl Borrow<NSObject> for NSFileWrapper
Available on crate feature NSFileWrapper
only.
impl Borrow<NSObject> for NSFileWrapper
NSFileWrapper
only.source§impl Borrow<NSObject> for NSFormatter
Available on crate feature NSFormatter
only.
impl Borrow<NSObject> for NSFormatter
NSFormatter
only.source§impl Borrow<NSObject> for NSGarbageCollector
Available on crate feature NSGarbageCollector
only.
impl Borrow<NSObject> for NSGarbageCollector
NSGarbageCollector
only.source§impl Borrow<NSObject> for NSGetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSGetCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSHTTPCookie
Available on crate feature NSHTTPCookie
only.
impl Borrow<NSObject> for NSHTTPCookie
NSHTTPCookie
only.source§impl Borrow<NSObject> for NSHTTPCookieStorage
Available on crate feature NSHTTPCookieStorage
only.
impl Borrow<NSObject> for NSHTTPCookieStorage
NSHTTPCookieStorage
only.source§impl Borrow<NSObject> for NSHTTPURLResponse
Available on crate feature NSURLResponse
only.
impl Borrow<NSObject> for NSHTTPURLResponse
NSURLResponse
only.source§impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSHashTable<ObjectType>
Available on crate feature NSHashTable
only.
impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSHashTable<ObjectType>
NSHashTable
only.source§impl Borrow<NSObject> for NSISO8601DateFormatter
Available on crate feature NSISO8601DateFormatter
only.
impl Borrow<NSObject> for NSISO8601DateFormatter
NSISO8601DateFormatter
only.source§impl Borrow<NSObject> for NSIndexPath
Available on crate feature NSIndexPath
only.
impl Borrow<NSObject> for NSIndexPath
NSIndexPath
only.source§impl Borrow<NSObject> for NSIndexSet
Available on crate feature NSIndexSet
only.
impl Borrow<NSObject> for NSIndexSet
NSIndexSet
only.source§impl Borrow<NSObject> for NSIndexSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSIndexSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSInflectionRule
Available on crate feature NSInflectionRule
only.
impl Borrow<NSObject> for NSInflectionRule
NSInflectionRule
only.source§impl Borrow<NSObject> for NSInflectionRuleExplicit
Available on crate feature NSInflectionRule
only.
impl Borrow<NSObject> for NSInflectionRuleExplicit
NSInflectionRule
only.source§impl Borrow<NSObject> for NSInputStream
Available on crate feature NSStream
only.
impl Borrow<NSObject> for NSInputStream
NSStream
only.source§impl Borrow<NSObject> for NSInvocation
Available on crate feature NSInvocation
only.
impl Borrow<NSObject> for NSInvocation
NSInvocation
only.source§impl Borrow<NSObject> for NSInvocationOperation
Available on crate feature NSOperation
only.
impl Borrow<NSObject> for NSInvocationOperation
NSOperation
only.source§impl Borrow<NSObject> for NSItemProvider
Available on crate feature NSItemProvider
only.
impl Borrow<NSObject> for NSItemProvider
NSItemProvider
only.source§impl Borrow<NSObject> for NSJSONSerialization
Available on crate feature NSJSONSerialization
only.
impl Borrow<NSObject> for NSJSONSerialization
NSJSONSerialization
only.source§impl Borrow<NSObject> for NSKeyedArchiver
Available on crate feature NSKeyedArchiver
only.
impl Borrow<NSObject> for NSKeyedArchiver
NSKeyedArchiver
only.source§impl Borrow<NSObject> for NSKeyedUnarchiver
Available on crate feature NSKeyedArchiver
only.
impl Borrow<NSObject> for NSKeyedUnarchiver
NSKeyedArchiver
only.source§impl Borrow<NSObject> for NSLengthFormatter
Available on crate feature NSLengthFormatter
only.
impl Borrow<NSObject> for NSLengthFormatter
NSLengthFormatter
only.source§impl Borrow<NSObject> for NSLinguisticTagger
Available on crate feature NSLinguisticTagger
only.
impl Borrow<NSObject> for NSLinguisticTagger
NSLinguisticTagger
only.source§impl Borrow<NSObject> for NSListFormatter
Available on crate feature NSListFormatter
only.
impl Borrow<NSObject> for NSListFormatter
NSListFormatter
only.source§impl Borrow<NSObject> for NSLogicalTest
Available on crate feature NSScriptWhoseTests
only.
impl Borrow<NSObject> for NSLogicalTest
NSScriptWhoseTests
only.source§impl Borrow<NSObject> for NSMachBootstrapServer
Available on crate feature NSPortNameServer
only.
impl Borrow<NSObject> for NSMachBootstrapServer
NSPortNameServer
only.source§impl Borrow<NSObject> for NSMachPort
Available on crate feature NSPort
only.
impl Borrow<NSObject> for NSMachPort
NSPort
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSMapTable<KeyType, ObjectType>
Available on crate feature NSMapTable
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSMapTable<KeyType, ObjectType>
NSMapTable
only.source§impl Borrow<NSObject> for NSMassFormatter
Available on crate feature NSMassFormatter
only.
impl Borrow<NSObject> for NSMassFormatter
NSMassFormatter
only.source§impl<UnitType: ?Sized + Message> Borrow<NSObject> for NSMeasurement<UnitType>
Available on crate feature NSMeasurement
only.
impl<UnitType: ?Sized + Message> Borrow<NSObject> for NSMeasurement<UnitType>
NSMeasurement
only.source§impl Borrow<NSObject> for NSMeasurementFormatter
Available on crate feature NSMeasurementFormatter
only.
impl Borrow<NSObject> for NSMeasurementFormatter
NSMeasurementFormatter
only.source§impl Borrow<NSObject> for NSMessagePort
Available on crate feature NSPort
only.
impl Borrow<NSObject> for NSMessagePort
NSPort
only.source§impl Borrow<NSObject> for NSMessagePortNameServer
Available on crate feature NSPortNameServer
only.
impl Borrow<NSObject> for NSMessagePortNameServer
NSPortNameServer
only.source§impl Borrow<NSObject> for NSMetadataItem
Available on crate feature NSMetadata
only.
impl Borrow<NSObject> for NSMetadataItem
NSMetadata
only.source§impl Borrow<NSObject> for NSMetadataQuery
Available on crate feature NSMetadata
only.
impl Borrow<NSObject> for NSMetadataQuery
NSMetadata
only.source§impl Borrow<NSObject> for NSMetadataQueryAttributeValueTuple
Available on crate feature NSMetadata
only.
impl Borrow<NSObject> for NSMetadataQueryAttributeValueTuple
NSMetadata
only.source§impl Borrow<NSObject> for NSMetadataQueryResultGroup
Available on crate feature NSMetadata
only.
impl Borrow<NSObject> for NSMetadataQueryResultGroup
NSMetadata
only.source§impl Borrow<NSObject> for NSMethodSignature
Available on crate feature NSMethodSignature
only.
impl Borrow<NSObject> for NSMethodSignature
NSMethodSignature
only.source§impl Borrow<NSObject> for NSMiddleSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSMiddleSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSMorphology
Available on crate feature NSMorphology
only.
impl Borrow<NSObject> for NSMorphology
NSMorphology
only.source§impl Borrow<NSObject> for NSMorphologyCustomPronoun
Available on crate feature NSMorphology
only.
impl Borrow<NSObject> for NSMorphologyCustomPronoun
NSMorphology
only.source§impl Borrow<NSObject> for NSMorphologyPronoun
Available on crate feature NSMorphology
only.
impl Borrow<NSObject> for NSMorphologyPronoun
NSMorphology
only.source§impl Borrow<NSObject> for NSMoveCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSMoveCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSMutableAttributedString
Available on crate feature NSAttributedString
only.
impl Borrow<NSObject> for NSMutableAttributedString
NSAttributedString
only.source§impl Borrow<NSObject> for NSMutableCharacterSet
Available on crate feature NSCharacterSet
only.
impl Borrow<NSObject> for NSMutableCharacterSet
NSCharacterSet
only.source§impl Borrow<NSObject> for NSMutableData
Available on crate feature NSData
only.
impl Borrow<NSObject> for NSMutableData
NSData
only.source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSMutableDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> Borrow<NSObject> for NSMutableDictionary<KeyType, ObjectType>
source§impl Borrow<NSObject> for NSMutableIndexSet
Available on crate feature NSIndexSet
only.
impl Borrow<NSObject> for NSMutableIndexSet
NSIndexSet
only.source§impl Borrow<NSObject> for NSMutableString
Available on crate feature NSString
only.
impl Borrow<NSObject> for NSMutableString
NSString
only.source§impl Borrow<NSObject> for NSMutableURLRequest
Available on crate feature NSURLRequest
only.
impl Borrow<NSObject> for NSMutableURLRequest
NSURLRequest
only.source§impl Borrow<NSObject> for NSNameSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSNameSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSNetService
Available on crate feature NSNetServices
only.
impl Borrow<NSObject> for NSNetService
NSNetServices
only.source§impl Borrow<NSObject> for NSNetServiceBrowser
Available on crate feature NSNetServices
only.
impl Borrow<NSObject> for NSNetServiceBrowser
NSNetServices
only.source§impl Borrow<NSObject> for NSNotification
Available on crate feature NSNotification
only.
impl Borrow<NSObject> for NSNotification
NSNotification
only.source§impl Borrow<NSObject> for NSNotificationCenter
Available on crate feature NSNotification
only.
impl Borrow<NSObject> for NSNotificationCenter
NSNotification
only.source§impl Borrow<NSObject> for NSNotificationQueue
Available on crate feature NSNotificationQueue
only.
impl Borrow<NSObject> for NSNotificationQueue
NSNotificationQueue
only.source§impl Borrow<NSObject> for NSNumberFormatter
Available on crate feature NSNumberFormatter
only.
impl Borrow<NSObject> for NSNumberFormatter
NSNumberFormatter
only.source§impl Borrow<NSObject> for NSOperation
Available on crate feature NSOperation
only.
impl Borrow<NSObject> for NSOperation
NSOperation
only.source§impl Borrow<NSObject> for NSOperationQueue
Available on crate feature NSOperation
only.
impl Borrow<NSObject> for NSOperationQueue
NSOperation
only.source§impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSOrderedCollectionChange<ObjectType>
Available on crate feature NSOrderedCollectionChange
only.
impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSOrderedCollectionChange<ObjectType>
NSOrderedCollectionChange
only.source§impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSOrderedCollectionDifference<ObjectType>
Available on crate feature NSOrderedCollectionDifference
only.
impl<ObjectType: ?Sized + Message> Borrow<NSObject> for NSOrderedCollectionDifference<ObjectType>
NSOrderedCollectionDifference
only.source§impl Borrow<NSObject> for NSOrthography
Available on crate feature NSOrthography
only.
impl Borrow<NSObject> for NSOrthography
NSOrthography
only.source§impl Borrow<NSObject> for NSOutputStream
Available on crate feature NSStream
only.
impl Borrow<NSObject> for NSOutputStream
NSStream
only.source§impl Borrow<NSObject> for NSPersonNameComponents
Available on crate feature NSPersonNameComponents
only.
impl Borrow<NSObject> for NSPersonNameComponents
NSPersonNameComponents
only.source§impl Borrow<NSObject> for NSPersonNameComponentsFormatter
Available on crate feature NSPersonNameComponentsFormatter
only.
impl Borrow<NSObject> for NSPersonNameComponentsFormatter
NSPersonNameComponentsFormatter
only.source§impl Borrow<NSObject> for NSPointerArray
Available on crate feature NSPointerArray
only.
impl Borrow<NSObject> for NSPointerArray
NSPointerArray
only.source§impl Borrow<NSObject> for NSPointerFunctions
Available on crate feature NSPointerFunctions
only.
impl Borrow<NSObject> for NSPointerFunctions
NSPointerFunctions
only.source§impl Borrow<NSObject> for NSPortCoder
Available on crate feature NSPortCoder
only.
impl Borrow<NSObject> for NSPortCoder
NSPortCoder
only.source§impl Borrow<NSObject> for NSPortMessage
Available on crate feature NSPortMessage
only.
impl Borrow<NSObject> for NSPortMessage
NSPortMessage
only.source§impl Borrow<NSObject> for NSPortNameServer
Available on crate feature NSPortNameServer
only.
impl Borrow<NSObject> for NSPortNameServer
NSPortNameServer
only.source§impl Borrow<NSObject> for NSPositionalSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSPositionalSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSPredicate
Available on crate feature NSPredicate
only.
impl Borrow<NSObject> for NSPredicate
NSPredicate
only.source§impl Borrow<NSObject> for NSPresentationIntent
Available on crate feature NSAttributedString
only.
impl Borrow<NSObject> for NSPresentationIntent
NSAttributedString
only.source§impl Borrow<NSObject> for NSProcessInfo
Available on crate feature NSProcessInfo
only.
impl Borrow<NSObject> for NSProcessInfo
NSProcessInfo
only.source§impl Borrow<NSObject> for NSProgress
Available on crate feature NSProgress
only.
impl Borrow<NSObject> for NSProgress
NSProgress
only.source§impl Borrow<NSObject> for NSPropertyListSerialization
Available on crate feature NSPropertyList
only.
impl Borrow<NSObject> for NSPropertyListSerialization
NSPropertyList
only.source§impl Borrow<NSObject> for NSPropertySpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSPropertySpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSPurgeableData
Available on crate feature NSData
only.
impl Borrow<NSObject> for NSPurgeableData
NSData
only.source§impl Borrow<NSObject> for NSQuitCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSQuitCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSRandomSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSRandomSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSRangeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSRangeSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSRecursiveLock
Available on crate feature NSLock
only.
impl Borrow<NSObject> for NSRecursiveLock
NSLock
only.source§impl Borrow<NSObject> for NSRegularExpression
Available on crate feature NSRegularExpression
only.
impl Borrow<NSObject> for NSRegularExpression
NSRegularExpression
only.source§impl Borrow<NSObject> for NSRelativeDateTimeFormatter
Available on crate feature NSRelativeDateTimeFormatter
only.
impl Borrow<NSObject> for NSRelativeDateTimeFormatter
NSRelativeDateTimeFormatter
only.source§impl Borrow<NSObject> for NSRelativeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSRelativeSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSScriptClassDescription
Available on crate feature NSScriptClassDescription
only.
impl Borrow<NSObject> for NSScriptClassDescription
NSScriptClassDescription
only.source§impl Borrow<NSObject> for NSScriptCoercionHandler
Available on crate feature NSScriptCoercionHandler
only.
impl Borrow<NSObject> for NSScriptCoercionHandler
NSScriptCoercionHandler
only.source§impl Borrow<NSObject> for NSScriptCommand
Available on crate feature NSScriptCommand
only.
impl Borrow<NSObject> for NSScriptCommand
NSScriptCommand
only.source§impl Borrow<NSObject> for NSScriptCommandDescription
Available on crate feature NSScriptCommandDescription
only.
impl Borrow<NSObject> for NSScriptCommandDescription
NSScriptCommandDescription
only.source§impl Borrow<NSObject> for NSScriptExecutionContext
Available on crate feature NSScriptExecutionContext
only.
impl Borrow<NSObject> for NSScriptExecutionContext
NSScriptExecutionContext
only.source§impl Borrow<NSObject> for NSScriptObjectSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSScriptObjectSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSScriptSuiteRegistry
Available on crate feature NSScriptSuiteRegistry
only.
impl Borrow<NSObject> for NSScriptSuiteRegistry
NSScriptSuiteRegistry
only.source§impl Borrow<NSObject> for NSScriptWhoseTest
Available on crate feature NSScriptWhoseTests
only.
impl Borrow<NSObject> for NSScriptWhoseTest
NSScriptWhoseTests
only.source§impl Borrow<NSObject> for NSSecureUnarchiveFromDataTransformer
Available on crate feature NSValueTransformer
only.
impl Borrow<NSObject> for NSSecureUnarchiveFromDataTransformer
NSValueTransformer
only.source§impl Borrow<NSObject> for NSSetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl Borrow<NSObject> for NSSetCommand
NSScriptStandardSuiteCommands
only.source§impl Borrow<NSObject> for NSSimpleCString
Available on crate feature NSString
only.
impl Borrow<NSObject> for NSSimpleCString
NSString
only.source§impl Borrow<NSObject> for NSSocketPort
Available on crate feature NSPort
only.
impl Borrow<NSObject> for NSSocketPort
NSPort
only.source§impl Borrow<NSObject> for NSSocketPortNameServer
Available on crate feature NSPortNameServer
only.
impl Borrow<NSObject> for NSSocketPortNameServer
NSPortNameServer
only.source§impl Borrow<NSObject> for NSSortDescriptor
Available on crate feature NSSortDescriptor
only.
impl Borrow<NSObject> for NSSortDescriptor
NSSortDescriptor
only.source§impl Borrow<NSObject> for NSSpecifierTest
Available on crate feature NSScriptWhoseTests
only.
impl Borrow<NSObject> for NSSpecifierTest
NSScriptWhoseTests
only.source§impl Borrow<NSObject> for NSSpellServer
Available on crate feature NSSpellServer
only.
impl Borrow<NSObject> for NSSpellServer
NSSpellServer
only.source§impl Borrow<NSObject> for NSTermOfAddress
Available on crate feature NSTermOfAddress
only.
impl Borrow<NSObject> for NSTermOfAddress
NSTermOfAddress
only.source§impl Borrow<NSObject> for NSTextCheckingResult
Available on crate feature NSTextCheckingResult
only.
impl Borrow<NSObject> for NSTextCheckingResult
NSTextCheckingResult
only.source§impl Borrow<NSObject> for NSTimeZone
Available on crate feature NSTimeZone
only.
impl Borrow<NSObject> for NSTimeZone
NSTimeZone
only.source§impl Borrow<NSObject> for NSURLAuthenticationChallenge
Available on crate feature NSURLAuthenticationChallenge
only.
impl Borrow<NSObject> for NSURLAuthenticationChallenge
NSURLAuthenticationChallenge
only.source§impl Borrow<NSObject> for NSURLCache
Available on crate feature NSURLCache
only.
impl Borrow<NSObject> for NSURLCache
NSURLCache
only.source§impl Borrow<NSObject> for NSURLComponents
Available on crate feature NSURL
only.
impl Borrow<NSObject> for NSURLComponents
NSURL
only.source§impl Borrow<NSObject> for NSURLConnection
Available on crate feature NSURLConnection
only.
impl Borrow<NSObject> for NSURLConnection
NSURLConnection
only.source§impl Borrow<NSObject> for NSURLCredential
Available on crate feature NSURLCredential
only.
impl Borrow<NSObject> for NSURLCredential
NSURLCredential
only.source§impl Borrow<NSObject> for NSURLCredentialStorage
Available on crate feature NSURLCredentialStorage
only.
impl Borrow<NSObject> for NSURLCredentialStorage
NSURLCredentialStorage
only.source§impl Borrow<NSObject> for NSURLDownload
Available on crate feature NSURLDownload
only.
impl Borrow<NSObject> for NSURLDownload
NSURLDownload
only.source§impl Borrow<NSObject> for NSURLHandle
Available on crate feature NSURLHandle
only.
impl Borrow<NSObject> for NSURLHandle
NSURLHandle
only.source§impl Borrow<NSObject> for NSURLProtectionSpace
Available on crate feature NSURLProtectionSpace
only.
impl Borrow<NSObject> for NSURLProtectionSpace
NSURLProtectionSpace
only.source§impl Borrow<NSObject> for NSURLProtocol
Available on crate feature NSURLProtocol
only.
impl Borrow<NSObject> for NSURLProtocol
NSURLProtocol
only.source§impl Borrow<NSObject> for NSURLQueryItem
Available on crate feature NSURL
only.
impl Borrow<NSObject> for NSURLQueryItem
NSURL
only.source§impl Borrow<NSObject> for NSURLRequest
Available on crate feature NSURLRequest
only.
impl Borrow<NSObject> for NSURLRequest
NSURLRequest
only.source§impl Borrow<NSObject> for NSURLResponse
Available on crate feature NSURLResponse
only.
impl Borrow<NSObject> for NSURLResponse
NSURLResponse
only.source§impl Borrow<NSObject> for NSURLSession
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSession
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionConfiguration
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionConfiguration
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionDataTask
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionDataTask
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionDownloadTask
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionDownloadTask
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionStreamTask
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionStreamTask
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionTask
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionTask
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionTaskMetrics
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionTaskMetrics
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionTaskTransactionMetrics
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionTaskTransactionMetrics
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionUploadTask
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionUploadTask
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionWebSocketMessage
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionWebSocketMessage
NSURLSession
only.source§impl Borrow<NSObject> for NSURLSessionWebSocketTask
Available on crate feature NSURLSession
only.
impl Borrow<NSObject> for NSURLSessionWebSocketTask
NSURLSession
only.source§impl Borrow<NSObject> for NSUbiquitousKeyValueStore
Available on crate feature NSUbiquitousKeyValueStore
only.
impl Borrow<NSObject> for NSUbiquitousKeyValueStore
NSUbiquitousKeyValueStore
only.source§impl Borrow<NSObject> for NSUnarchiver
Available on crate feature NSArchiver
only.
impl Borrow<NSObject> for NSUnarchiver
NSArchiver
only.source§impl Borrow<NSObject> for NSUndoManager
Available on crate feature NSUndoManager
only.
impl Borrow<NSObject> for NSUndoManager
NSUndoManager
only.source§impl Borrow<NSObject> for NSUniqueIDSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSUniqueIDSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSUnitAcceleration
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitAcceleration
NSUnit
only.source§impl Borrow<NSObject> for NSUnitAngle
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitAngle
NSUnit
only.source§impl Borrow<NSObject> for NSUnitArea
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitArea
NSUnit
only.source§impl Borrow<NSObject> for NSUnitConcentrationMass
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitConcentrationMass
NSUnit
only.source§impl Borrow<NSObject> for NSUnitConverter
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitConverter
NSUnit
only.source§impl Borrow<NSObject> for NSUnitConverterLinear
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitConverterLinear
NSUnit
only.source§impl Borrow<NSObject> for NSUnitDispersion
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitDispersion
NSUnit
only.source§impl Borrow<NSObject> for NSUnitDuration
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitDuration
NSUnit
only.source§impl Borrow<NSObject> for NSUnitElectricCharge
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitElectricCharge
NSUnit
only.source§impl Borrow<NSObject> for NSUnitElectricCurrent
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitElectricCurrent
NSUnit
only.source§impl Borrow<NSObject> for NSUnitElectricPotentialDifference
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitElectricPotentialDifference
NSUnit
only.source§impl Borrow<NSObject> for NSUnitElectricResistance
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitElectricResistance
NSUnit
only.source§impl Borrow<NSObject> for NSUnitEnergy
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitEnergy
NSUnit
only.source§impl Borrow<NSObject> for NSUnitFrequency
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitFrequency
NSUnit
only.source§impl Borrow<NSObject> for NSUnitFuelEfficiency
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitFuelEfficiency
NSUnit
only.source§impl Borrow<NSObject> for NSUnitIlluminance
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitIlluminance
NSUnit
only.source§impl Borrow<NSObject> for NSUnitInformationStorage
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitInformationStorage
NSUnit
only.source§impl Borrow<NSObject> for NSUnitLength
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitLength
NSUnit
only.source§impl Borrow<NSObject> for NSUnitMass
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitMass
NSUnit
only.source§impl Borrow<NSObject> for NSUnitPower
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitPower
NSUnit
only.source§impl Borrow<NSObject> for NSUnitPressure
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitPressure
NSUnit
only.source§impl Borrow<NSObject> for NSUnitSpeed
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitSpeed
NSUnit
only.source§impl Borrow<NSObject> for NSUnitTemperature
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitTemperature
NSUnit
only.source§impl Borrow<NSObject> for NSUnitVolume
Available on crate feature NSUnit
only.
impl Borrow<NSObject> for NSUnitVolume
NSUnit
only.source§impl Borrow<NSObject> for NSUserActivity
Available on crate feature NSUserActivity
only.
impl Borrow<NSObject> for NSUserActivity
NSUserActivity
only.source§impl Borrow<NSObject> for NSUserAppleScriptTask
Available on crate feature NSUserScriptTask
only.
impl Borrow<NSObject> for NSUserAppleScriptTask
NSUserScriptTask
only.source§impl Borrow<NSObject> for NSUserAutomatorTask
Available on crate feature NSUserScriptTask
only.
impl Borrow<NSObject> for NSUserAutomatorTask
NSUserScriptTask
only.source§impl Borrow<NSObject> for NSUserDefaults
Available on crate feature NSUserDefaults
only.
impl Borrow<NSObject> for NSUserDefaults
NSUserDefaults
only.source§impl Borrow<NSObject> for NSUserNotification
Available on crate feature NSUserNotification
only.
impl Borrow<NSObject> for NSUserNotification
NSUserNotification
only.source§impl Borrow<NSObject> for NSUserNotificationAction
Available on crate feature NSUserNotification
only.
impl Borrow<NSObject> for NSUserNotificationAction
NSUserNotification
only.source§impl Borrow<NSObject> for NSUserNotificationCenter
Available on crate feature NSUserNotification
only.
impl Borrow<NSObject> for NSUserNotificationCenter
NSUserNotification
only.source§impl Borrow<NSObject> for NSUserScriptTask
Available on crate feature NSUserScriptTask
only.
impl Borrow<NSObject> for NSUserScriptTask
NSUserScriptTask
only.source§impl Borrow<NSObject> for NSUserUnixTask
Available on crate feature NSUserScriptTask
only.
impl Borrow<NSObject> for NSUserUnixTask
NSUserScriptTask
only.source§impl Borrow<NSObject> for NSValueTransformer
Available on crate feature NSValueTransformer
only.
impl Borrow<NSObject> for NSValueTransformer
NSValueTransformer
only.source§impl Borrow<NSObject> for NSWhoseSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl Borrow<NSObject> for NSWhoseSpecifier
NSScriptObjectSpecifiers
only.source§impl Borrow<NSObject> for NSXMLDTDNode
Available on crate feature NSXMLDTDNode
only.
impl Borrow<NSObject> for NSXMLDTDNode
NSXMLDTDNode
only.source§impl Borrow<NSObject> for NSXMLDocument
Available on crate feature NSXMLDocument
only.
impl Borrow<NSObject> for NSXMLDocument
NSXMLDocument
only.source§impl Borrow<NSObject> for NSXMLElement
Available on crate feature NSXMLElement
only.
impl Borrow<NSObject> for NSXMLElement
NSXMLElement
only.source§impl Borrow<NSObject> for NSXMLParser
Available on crate feature NSXMLParser
only.
impl Borrow<NSObject> for NSXMLParser
NSXMLParser
only.source§impl Borrow<NSObject> for NSXPCCoder
Available on crate feature NSXPCConnection
only.
impl Borrow<NSObject> for NSXPCCoder
NSXPCConnection
only.source§impl Borrow<NSObject> for NSXPCConnection
Available on crate feature NSXPCConnection
only.
impl Borrow<NSObject> for NSXPCConnection
NSXPCConnection
only.source§impl Borrow<NSObject> for NSXPCInterface
Available on crate feature NSXPCConnection
only.
impl Borrow<NSObject> for NSXPCInterface
NSXPCConnection
only.source§impl Borrow<NSObject> for NSXPCListener
Available on crate feature NSXPCConnection
only.
impl Borrow<NSObject> for NSXPCListener
NSXPCConnection
only.source§impl Borrow<NSObject> for NSXPCListenerEndpoint
Available on crate feature NSXPCConnection
only.
impl Borrow<NSObject> for NSXPCListenerEndpoint
NSXPCConnection
only.source§impl BorrowMut<AnyObject> for NSObject
impl BorrowMut<AnyObject> for NSObject
source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
source§impl BorrowMut<NSObject> for NSAffineTransform
Available on crate feature NSAffineTransform
only.
impl BorrowMut<NSObject> for NSAffineTransform
NSAffineTransform
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAppleEventDescriptor
Available on crate feature NSAppleEventDescriptor
only.
impl BorrowMut<NSObject> for NSAppleEventDescriptor
NSAppleEventDescriptor
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAppleEventManager
Available on crate feature NSAppleEventManager
only.
impl BorrowMut<NSObject> for NSAppleEventManager
NSAppleEventManager
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAppleScript
Available on crate feature NSAppleScript
only.
impl BorrowMut<NSObject> for NSAppleScript
NSAppleScript
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSArchiver
Available on crate feature NSArchiver
only.
impl BorrowMut<NSObject> for NSArchiver
NSArchiver
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSArray<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSArray<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAssertionHandler
Available on crate feature NSException
only.
impl BorrowMut<NSObject> for NSAssertionHandler
NSException
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAttributedString
Available on crate feature NSAttributedString
only.
impl BorrowMut<NSObject> for NSAttributedString
NSAttributedString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAttributedStringMarkdownParsingOptions
Available on crate feature NSAttributedString
only.
impl BorrowMut<NSObject> for NSAttributedStringMarkdownParsingOptions
NSAttributedString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAttributedStringMarkdownSourcePosition
Available on crate feature NSAttributedString
only.
impl BorrowMut<NSObject> for NSAttributedStringMarkdownSourcePosition
NSAttributedString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAutoreleasePool
Available on crate feature NSAutoreleasePool
only.
impl BorrowMut<NSObject> for NSAutoreleasePool
NSAutoreleasePool
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSBackgroundActivityScheduler
Available on crate feature NSBackgroundActivityScheduler
only.
impl BorrowMut<NSObject> for NSBackgroundActivityScheduler
NSBackgroundActivityScheduler
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSBlockOperation
Available on crate feature NSOperation
only.
impl BorrowMut<NSObject> for NSBlockOperation
NSOperation
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSBundle
Available on crate feature NSBundle
only.
impl BorrowMut<NSObject> for NSBundle
NSBundle
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSBundleResourceRequest
Available on crate feature NSBundle
only.
impl BorrowMut<NSObject> for NSBundleResourceRequest
NSBundle
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSByteCountFormatter
Available on crate feature NSByteCountFormatter
only.
impl BorrowMut<NSObject> for NSByteCountFormatter
NSByteCountFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSCache<KeyType, ObjectType>
Available on crate feature NSCache
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSCache<KeyType, ObjectType>
NSCache
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCachedURLResponse
Available on crate feature NSURLCache
only.
impl BorrowMut<NSObject> for NSCachedURLResponse
NSURLCache
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCalendar
Available on crate feature NSCalendar
only.
impl BorrowMut<NSObject> for NSCalendar
NSCalendar
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCalendarDate
Available on crate feature NSCalendarDate
only.
impl BorrowMut<NSObject> for NSCalendarDate
NSCalendarDate
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCharacterSet
Available on crate feature NSCharacterSet
only.
impl BorrowMut<NSObject> for NSCharacterSet
NSCharacterSet
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSClassDescription
Available on crate feature NSClassDescription
only.
impl BorrowMut<NSObject> for NSClassDescription
NSClassDescription
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCloneCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSCloneCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCloseCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSCloseCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCoder
Available on crate feature NSCoder
only.
impl BorrowMut<NSObject> for NSCoder
NSCoder
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSComparisonPredicate
Available on crate feature NSComparisonPredicate
only.
impl BorrowMut<NSObject> for NSComparisonPredicate
NSComparisonPredicate
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCompoundPredicate
Available on crate feature NSCompoundPredicate
only.
impl BorrowMut<NSObject> for NSCompoundPredicate
NSCompoundPredicate
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCondition
Available on crate feature NSLock
only.
impl BorrowMut<NSObject> for NSCondition
NSLock
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSConditionLock
Available on crate feature NSLock
only.
impl BorrowMut<NSObject> for NSConditionLock
NSLock
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSConnection
Available on crate feature NSConnection
only.
impl BorrowMut<NSObject> for NSConnection
NSConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSConstantString
Available on crate feature NSString
only.
impl BorrowMut<NSObject> for NSConstantString
NSString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCountCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSCountCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSCountedSet<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSCountedSet<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSCreateCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSCreateCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSData
Available on crate feature NSData
only.
impl BorrowMut<NSObject> for NSData
NSData
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDataDetector
Available on crate feature NSRegularExpression
only.
impl BorrowMut<NSObject> for NSDataDetector
NSRegularExpression
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDate
Available on crate feature NSDate
only.
impl BorrowMut<NSObject> for NSDate
NSDate
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDateComponents
Available on crate feature NSCalendar
only.
impl BorrowMut<NSObject> for NSDateComponents
NSCalendar
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDateComponentsFormatter
Available on crate feature NSDateComponentsFormatter
only.
impl BorrowMut<NSObject> for NSDateComponentsFormatter
NSDateComponentsFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDateFormatter
Available on crate feature NSDateFormatter
only.
impl BorrowMut<NSObject> for NSDateFormatter
NSDateFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDateInterval
Available on crate feature NSDateInterval
only.
impl BorrowMut<NSObject> for NSDateInterval
NSDateInterval
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDateIntervalFormatter
Available on crate feature NSDateIntervalFormatter
only.
impl BorrowMut<NSObject> for NSDateIntervalFormatter
NSDateIntervalFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDecimalNumber
Available on crate feature NSDecimalNumber
only.
impl BorrowMut<NSObject> for NSDecimalNumber
NSDecimalNumber
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDecimalNumberHandler
Available on crate feature NSDecimalNumber
only.
impl BorrowMut<NSObject> for NSDecimalNumberHandler
NSDecimalNumber
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDeleteCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSDeleteCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSDictionary<KeyType, ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDimension
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSDimension
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSDirectoryEnumerator<ObjectType>
Available on crate feature NSFileManager
only.
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSDirectoryEnumerator<ObjectType>
NSFileManager
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDistantObjectRequest
Available on crate feature NSConnection
only.
impl BorrowMut<NSObject> for NSDistantObjectRequest
NSConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDistributedLock
Available on crate feature NSDistributedLock
only.
impl BorrowMut<NSObject> for NSDistributedLock
NSDistributedLock
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSDistributedNotificationCenter
Available on crate feature NSDistributedNotificationCenter
only.
impl BorrowMut<NSObject> for NSDistributedNotificationCenter
NSDistributedNotificationCenter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSEnergyFormatter
Available on crate feature NSEnergyFormatter
only.
impl BorrowMut<NSObject> for NSEnergyFormatter
NSEnergyFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSEnumerator<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSError
Available on crate feature NSError
only.
impl BorrowMut<NSObject> for NSError
NSError
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSException
Available on crate feature NSException
only.
impl BorrowMut<NSObject> for NSException
NSException
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSExistsCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSExistsCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSExpression
Available on crate feature NSExpression
only.
impl BorrowMut<NSObject> for NSExpression
NSExpression
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSExtensionContext
Available on crate feature NSExtensionContext
only.
impl BorrowMut<NSObject> for NSExtensionContext
NSExtensionContext
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSExtensionItem
Available on crate feature NSExtensionItem
only.
impl BorrowMut<NSObject> for NSExtensionItem
NSExtensionItem
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileAccessIntent
Available on crate feature NSFileCoordinator
only.
impl BorrowMut<NSObject> for NSFileAccessIntent
NSFileCoordinator
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileCoordinator
Available on crate feature NSFileCoordinator
only.
impl BorrowMut<NSObject> for NSFileCoordinator
NSFileCoordinator
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileHandle
Available on crate feature NSFileHandle
only.
impl BorrowMut<NSObject> for NSFileHandle
NSFileHandle
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileManager
Available on crate feature NSFileManager
only.
impl BorrowMut<NSObject> for NSFileManager
NSFileManager
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileProviderService
Available on crate feature NSFileManager
only.
impl BorrowMut<NSObject> for NSFileProviderService
NSFileManager
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileSecurity
Available on crate feature NSURL
only.
impl BorrowMut<NSObject> for NSFileSecurity
NSURL
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileVersion
Available on crate feature NSFileVersion
only.
impl BorrowMut<NSObject> for NSFileVersion
NSFileVersion
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFileWrapper
Available on crate feature NSFileWrapper
only.
impl BorrowMut<NSObject> for NSFileWrapper
NSFileWrapper
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSFormatter
Available on crate feature NSFormatter
only.
impl BorrowMut<NSObject> for NSFormatter
NSFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSGarbageCollector
Available on crate feature NSGarbageCollector
only.
impl BorrowMut<NSObject> for NSGarbageCollector
NSGarbageCollector
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSGetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSGetCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSHTTPCookie
Available on crate feature NSHTTPCookie
only.
impl BorrowMut<NSObject> for NSHTTPCookie
NSHTTPCookie
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSHTTPCookieStorage
Available on crate feature NSHTTPCookieStorage
only.
impl BorrowMut<NSObject> for NSHTTPCookieStorage
NSHTTPCookieStorage
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSHTTPURLResponse
Available on crate feature NSURLResponse
only.
impl BorrowMut<NSObject> for NSHTTPURLResponse
NSURLResponse
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSHashTable<ObjectType>
Available on crate feature NSHashTable
only.
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSHashTable<ObjectType>
NSHashTable
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSHost
Available on crate feature NSHost
only.
impl BorrowMut<NSObject> for NSHost
NSHost
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSISO8601DateFormatter
Available on crate feature NSISO8601DateFormatter
only.
impl BorrowMut<NSObject> for NSISO8601DateFormatter
NSISO8601DateFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSIndexPath
Available on crate feature NSIndexPath
only.
impl BorrowMut<NSObject> for NSIndexPath
NSIndexPath
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSIndexSet
Available on crate feature NSIndexSet
only.
impl BorrowMut<NSObject> for NSIndexSet
NSIndexSet
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSIndexSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSIndexSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSInflectionRule
Available on crate feature NSInflectionRule
only.
impl BorrowMut<NSObject> for NSInflectionRule
NSInflectionRule
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSInflectionRuleExplicit
Available on crate feature NSInflectionRule
only.
impl BorrowMut<NSObject> for NSInflectionRuleExplicit
NSInflectionRule
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSInputStream
Available on crate feature NSStream
only.
impl BorrowMut<NSObject> for NSInputStream
NSStream
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSInvocation
Available on crate feature NSInvocation
only.
impl BorrowMut<NSObject> for NSInvocation
NSInvocation
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSInvocationOperation
Available on crate feature NSOperation
only.
impl BorrowMut<NSObject> for NSInvocationOperation
NSOperation
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSItemProvider
Available on crate feature NSItemProvider
only.
impl BorrowMut<NSObject> for NSItemProvider
NSItemProvider
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSJSONSerialization
Available on crate feature NSJSONSerialization
only.
impl BorrowMut<NSObject> for NSJSONSerialization
NSJSONSerialization
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSKeyedArchiver
Available on crate feature NSKeyedArchiver
only.
impl BorrowMut<NSObject> for NSKeyedArchiver
NSKeyedArchiver
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSKeyedUnarchiver
Available on crate feature NSKeyedArchiver
only.
impl BorrowMut<NSObject> for NSKeyedUnarchiver
NSKeyedArchiver
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSLengthFormatter
Available on crate feature NSLengthFormatter
only.
impl BorrowMut<NSObject> for NSLengthFormatter
NSLengthFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSLinguisticTagger
Available on crate feature NSLinguisticTagger
only.
impl BorrowMut<NSObject> for NSLinguisticTagger
NSLinguisticTagger
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSListFormatter
Available on crate feature NSListFormatter
only.
impl BorrowMut<NSObject> for NSListFormatter
NSListFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSLocale
Available on crate feature NSLocale
only.
impl BorrowMut<NSObject> for NSLocale
NSLocale
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSLock
Available on crate feature NSLock
only.
impl BorrowMut<NSObject> for NSLock
NSLock
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSLogicalTest
Available on crate feature NSScriptWhoseTests
only.
impl BorrowMut<NSObject> for NSLogicalTest
NSScriptWhoseTests
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMachBootstrapServer
Available on crate feature NSPortNameServer
only.
impl BorrowMut<NSObject> for NSMachBootstrapServer
NSPortNameServer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMachPort
Available on crate feature NSPort
only.
impl BorrowMut<NSObject> for NSMachPort
NSPort
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMapTable<KeyType, ObjectType>
Available on crate feature NSMapTable
only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMapTable<KeyType, ObjectType>
NSMapTable
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMassFormatter
Available on crate feature NSMassFormatter
only.
impl BorrowMut<NSObject> for NSMassFormatter
NSMassFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<UnitType: ?Sized + Message> BorrowMut<NSObject> for NSMeasurement<UnitType>
Available on crate feature NSMeasurement
only.
impl<UnitType: ?Sized + Message> BorrowMut<NSObject> for NSMeasurement<UnitType>
NSMeasurement
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMeasurementFormatter
Available on crate feature NSMeasurementFormatter
only.
impl BorrowMut<NSObject> for NSMeasurementFormatter
NSMeasurementFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMessagePort
Available on crate feature NSPort
only.
impl BorrowMut<NSObject> for NSMessagePort
NSPort
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMessagePortNameServer
Available on crate feature NSPortNameServer
only.
impl BorrowMut<NSObject> for NSMessagePortNameServer
NSPortNameServer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMetadataItem
Available on crate feature NSMetadata
only.
impl BorrowMut<NSObject> for NSMetadataItem
NSMetadata
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMetadataQuery
Available on crate feature NSMetadata
only.
impl BorrowMut<NSObject> for NSMetadataQuery
NSMetadata
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMetadataQueryAttributeValueTuple
Available on crate feature NSMetadata
only.
impl BorrowMut<NSObject> for NSMetadataQueryAttributeValueTuple
NSMetadata
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMetadataQueryResultGroup
Available on crate feature NSMetadata
only.
impl BorrowMut<NSObject> for NSMetadataQueryResultGroup
NSMetadata
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMethodSignature
Available on crate feature NSMethodSignature
only.
impl BorrowMut<NSObject> for NSMethodSignature
NSMethodSignature
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMiddleSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSMiddleSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMorphology
Available on crate feature NSMorphology
only.
impl BorrowMut<NSObject> for NSMorphology
NSMorphology
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMorphologyCustomPronoun
Available on crate feature NSMorphology
only.
impl BorrowMut<NSObject> for NSMorphologyCustomPronoun
NSMorphology
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMorphologyPronoun
Available on crate feature NSMorphology
only.
impl BorrowMut<NSObject> for NSMorphologyPronoun
NSMorphology
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMoveCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSMoveCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableArray<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableArray<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableAttributedString
Available on crate feature NSAttributedString
only.
impl BorrowMut<NSObject> for NSMutableAttributedString
NSAttributedString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableCharacterSet
Available on crate feature NSCharacterSet
only.
impl BorrowMut<NSObject> for NSMutableCharacterSet
NSCharacterSet
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableData
Available on crate feature NSData
only.
impl BorrowMut<NSObject> for NSMutableData
NSData
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableDictionary<KeyType, ObjectType>
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableDictionary<KeyType, ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableIndexSet
Available on crate feature NSIndexSet
only.
impl BorrowMut<NSObject> for NSMutableIndexSet
NSIndexSet
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableOrderedSet<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableOrderedSet<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableSet<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSMutableSet<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableString
Available on crate feature NSString
only.
impl BorrowMut<NSObject> for NSMutableString
NSString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableURLRequest
Available on crate feature NSURLRequest
only.
impl BorrowMut<NSObject> for NSMutableURLRequest
NSURLRequest
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNameSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSNameSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNetService
Available on crate feature NSNetServices
only.
impl BorrowMut<NSObject> for NSNetService
NSNetServices
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNetServiceBrowser
Available on crate feature NSNetServices
only.
impl BorrowMut<NSObject> for NSNetServiceBrowser
NSNetServices
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNotification
Available on crate feature NSNotification
only.
impl BorrowMut<NSObject> for NSNotification
NSNotification
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNotificationCenter
Available on crate feature NSNotification
only.
impl BorrowMut<NSObject> for NSNotificationCenter
NSNotification
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNotificationQueue
Available on crate feature NSNotificationQueue
only.
impl BorrowMut<NSObject> for NSNotificationQueue
NSNotificationQueue
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNull
Available on crate feature NSNull
only.
impl BorrowMut<NSObject> for NSNull
NSNull
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNumber
Available on crate feature NSValue
only.
impl BorrowMut<NSObject> for NSNumber
NSValue
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNumberFormatter
Available on crate feature NSNumberFormatter
only.
impl BorrowMut<NSObject> for NSNumberFormatter
NSNumberFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSOperation
Available on crate feature NSOperation
only.
impl BorrowMut<NSObject> for NSOperation
NSOperation
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSOperationQueue
Available on crate feature NSOperation
only.
impl BorrowMut<NSObject> for NSOperationQueue
NSOperation
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSOrderedCollectionChange<ObjectType>
Available on crate feature NSOrderedCollectionChange
only.
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSOrderedCollectionChange<ObjectType>
NSOrderedCollectionChange
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSOrderedCollectionDifference<ObjectType>
Available on crate feature NSOrderedCollectionDifference
only.
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSOrderedCollectionDifference<ObjectType>
NSOrderedCollectionDifference
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSOrderedSet<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSOrderedSet<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSOrthography
Available on crate feature NSOrthography
only.
impl BorrowMut<NSObject> for NSOrthography
NSOrthography
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSOutputStream
Available on crate feature NSStream
only.
impl BorrowMut<NSObject> for NSOutputStream
NSStream
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPersonNameComponents
Available on crate feature NSPersonNameComponents
only.
impl BorrowMut<NSObject> for NSPersonNameComponents
NSPersonNameComponents
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPersonNameComponentsFormatter
Available on crate feature NSPersonNameComponentsFormatter
only.
impl BorrowMut<NSObject> for NSPersonNameComponentsFormatter
NSPersonNameComponentsFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPipe
Available on crate feature NSFileHandle
only.
impl BorrowMut<NSObject> for NSPipe
NSFileHandle
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPointerArray
Available on crate feature NSPointerArray
only.
impl BorrowMut<NSObject> for NSPointerArray
NSPointerArray
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPointerFunctions
Available on crate feature NSPointerFunctions
only.
impl BorrowMut<NSObject> for NSPointerFunctions
NSPointerFunctions
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPort
Available on crate feature NSPort
only.
impl BorrowMut<NSObject> for NSPort
NSPort
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPortCoder
Available on crate feature NSPortCoder
only.
impl BorrowMut<NSObject> for NSPortCoder
NSPortCoder
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPortMessage
Available on crate feature NSPortMessage
only.
impl BorrowMut<NSObject> for NSPortMessage
NSPortMessage
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPortNameServer
Available on crate feature NSPortNameServer
only.
impl BorrowMut<NSObject> for NSPortNameServer
NSPortNameServer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPositionalSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSPositionalSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPredicate
Available on crate feature NSPredicate
only.
impl BorrowMut<NSObject> for NSPredicate
NSPredicate
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPresentationIntent
Available on crate feature NSAttributedString
only.
impl BorrowMut<NSObject> for NSPresentationIntent
NSAttributedString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSProcessInfo
Available on crate feature NSProcessInfo
only.
impl BorrowMut<NSObject> for NSProcessInfo
NSProcessInfo
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSProgress
Available on crate feature NSProgress
only.
impl BorrowMut<NSObject> for NSProgress
NSProgress
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPropertyListSerialization
Available on crate feature NSPropertyList
only.
impl BorrowMut<NSObject> for NSPropertyListSerialization
NSPropertyList
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPropertySpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSPropertySpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSPurgeableData
Available on crate feature NSData
only.
impl BorrowMut<NSObject> for NSPurgeableData
NSData
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSQuitCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSQuitCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRandomSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSRandomSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRangeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSRangeSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRecursiveLock
Available on crate feature NSLock
only.
impl BorrowMut<NSObject> for NSRecursiveLock
NSLock
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRegularExpression
Available on crate feature NSRegularExpression
only.
impl BorrowMut<NSObject> for NSRegularExpression
NSRegularExpression
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRelativeDateTimeFormatter
Available on crate feature NSRelativeDateTimeFormatter
only.
impl BorrowMut<NSObject> for NSRelativeDateTimeFormatter
NSRelativeDateTimeFormatter
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRelativeSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSRelativeSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSRunLoop
Available on crate feature NSRunLoop
only.
impl BorrowMut<NSObject> for NSRunLoop
NSRunLoop
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScanner
Available on crate feature NSScanner
only.
impl BorrowMut<NSObject> for NSScanner
NSScanner
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptClassDescription
Available on crate feature NSScriptClassDescription
only.
impl BorrowMut<NSObject> for NSScriptClassDescription
NSScriptClassDescription
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptCoercionHandler
Available on crate feature NSScriptCoercionHandler
only.
impl BorrowMut<NSObject> for NSScriptCoercionHandler
NSScriptCoercionHandler
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptCommand
Available on crate feature NSScriptCommand
only.
impl BorrowMut<NSObject> for NSScriptCommand
NSScriptCommand
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptCommandDescription
Available on crate feature NSScriptCommandDescription
only.
impl BorrowMut<NSObject> for NSScriptCommandDescription
NSScriptCommandDescription
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptExecutionContext
Available on crate feature NSScriptExecutionContext
only.
impl BorrowMut<NSObject> for NSScriptExecutionContext
NSScriptExecutionContext
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptObjectSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSScriptObjectSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptSuiteRegistry
Available on crate feature NSScriptSuiteRegistry
only.
impl BorrowMut<NSObject> for NSScriptSuiteRegistry
NSScriptSuiteRegistry
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSScriptWhoseTest
Available on crate feature NSScriptWhoseTests
only.
impl BorrowMut<NSObject> for NSScriptWhoseTest
NSScriptWhoseTests
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSecureUnarchiveFromDataTransformer
Available on crate feature NSValueTransformer
only.
impl BorrowMut<NSObject> for NSSecureUnarchiveFromDataTransformer
NSValueTransformer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSSet<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSSet<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSetCommand
Available on crate feature NSScriptStandardSuiteCommands
only.
impl BorrowMut<NSObject> for NSSetCommand
NSScriptStandardSuiteCommands
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSimpleCString
Available on crate feature NSString
only.
impl BorrowMut<NSObject> for NSSimpleCString
NSString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSocketPort
Available on crate feature NSPort
only.
impl BorrowMut<NSObject> for NSSocketPort
NSPort
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSocketPortNameServer
Available on crate feature NSPortNameServer
only.
impl BorrowMut<NSObject> for NSSocketPortNameServer
NSPortNameServer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSortDescriptor
Available on crate feature NSSortDescriptor
only.
impl BorrowMut<NSObject> for NSSortDescriptor
NSSortDescriptor
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSpecifierTest
Available on crate feature NSScriptWhoseTests
only.
impl BorrowMut<NSObject> for NSSpecifierTest
NSScriptWhoseTests
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSSpellServer
Available on crate feature NSSpellServer
only.
impl BorrowMut<NSObject> for NSSpellServer
NSSpellServer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSStream
Available on crate feature NSStream
only.
impl BorrowMut<NSObject> for NSStream
NSStream
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSString
Available on crate feature NSString
only.
impl BorrowMut<NSObject> for NSString
NSString
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSTask
Available on crate feature NSTask
only.
impl BorrowMut<NSObject> for NSTask
NSTask
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSTermOfAddress
Available on crate feature NSTermOfAddress
only.
impl BorrowMut<NSObject> for NSTermOfAddress
NSTermOfAddress
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSTextCheckingResult
Available on crate feature NSTextCheckingResult
only.
impl BorrowMut<NSObject> for NSTextCheckingResult
NSTextCheckingResult
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSThread
Available on crate feature NSThread
only.
impl BorrowMut<NSObject> for NSThread
NSThread
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSTimeZone
Available on crate feature NSTimeZone
only.
impl BorrowMut<NSObject> for NSTimeZone
NSTimeZone
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSTimer
Available on crate feature NSTimer
only.
impl BorrowMut<NSObject> for NSTimer
NSTimer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURL
Available on crate feature NSURL
only.
impl BorrowMut<NSObject> for NSURL
NSURL
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLAuthenticationChallenge
Available on crate feature NSURLAuthenticationChallenge
only.
impl BorrowMut<NSObject> for NSURLAuthenticationChallenge
NSURLAuthenticationChallenge
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLCache
Available on crate feature NSURLCache
only.
impl BorrowMut<NSObject> for NSURLCache
NSURLCache
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLComponents
Available on crate feature NSURL
only.
impl BorrowMut<NSObject> for NSURLComponents
NSURL
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLConnection
Available on crate feature NSURLConnection
only.
impl BorrowMut<NSObject> for NSURLConnection
NSURLConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLCredential
Available on crate feature NSURLCredential
only.
impl BorrowMut<NSObject> for NSURLCredential
NSURLCredential
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLCredentialStorage
Available on crate feature NSURLCredentialStorage
only.
impl BorrowMut<NSObject> for NSURLCredentialStorage
NSURLCredentialStorage
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLDownload
Available on crate feature NSURLDownload
only.
impl BorrowMut<NSObject> for NSURLDownload
NSURLDownload
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLHandle
Available on crate feature NSURLHandle
only.
impl BorrowMut<NSObject> for NSURLHandle
NSURLHandle
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLProtectionSpace
Available on crate feature NSURLProtectionSpace
only.
impl BorrowMut<NSObject> for NSURLProtectionSpace
NSURLProtectionSpace
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLProtocol
Available on crate feature NSURLProtocol
only.
impl BorrowMut<NSObject> for NSURLProtocol
NSURLProtocol
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLQueryItem
Available on crate feature NSURL
only.
impl BorrowMut<NSObject> for NSURLQueryItem
NSURL
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLRequest
Available on crate feature NSURLRequest
only.
impl BorrowMut<NSObject> for NSURLRequest
NSURLRequest
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLResponse
Available on crate feature NSURLResponse
only.
impl BorrowMut<NSObject> for NSURLResponse
NSURLResponse
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSession
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSession
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionConfiguration
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionConfiguration
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionDataTask
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionDataTask
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionDownloadTask
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionDownloadTask
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionStreamTask
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionStreamTask
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionTask
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionTask
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionTaskMetrics
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionTaskMetrics
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionTaskTransactionMetrics
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionTaskTransactionMetrics
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionUploadTask
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionUploadTask
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionWebSocketMessage
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionWebSocketMessage
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSURLSessionWebSocketTask
Available on crate feature NSURLSession
only.
impl BorrowMut<NSObject> for NSURLSessionWebSocketTask
NSURLSession
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUUID
Available on crate feature NSUUID
only.
impl BorrowMut<NSObject> for NSUUID
NSUUID
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUbiquitousKeyValueStore
Available on crate feature NSUbiquitousKeyValueStore
only.
impl BorrowMut<NSObject> for NSUbiquitousKeyValueStore
NSUbiquitousKeyValueStore
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnarchiver
Available on crate feature NSArchiver
only.
impl BorrowMut<NSObject> for NSUnarchiver
NSArchiver
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUndoManager
Available on crate feature NSUndoManager
only.
impl BorrowMut<NSObject> for NSUndoManager
NSUndoManager
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUniqueIDSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSUniqueIDSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnit
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnit
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitAcceleration
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitAcceleration
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitAngle
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitAngle
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitArea
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitArea
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitConcentrationMass
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitConcentrationMass
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitConverter
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitConverter
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitConverterLinear
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitConverterLinear
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitDispersion
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitDispersion
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitDuration
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitDuration
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitElectricCharge
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitElectricCharge
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitElectricCurrent
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitElectricCurrent
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitElectricPotentialDifference
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitElectricPotentialDifference
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitElectricResistance
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitElectricResistance
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitEnergy
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitEnergy
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitFrequency
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitFrequency
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitFuelEfficiency
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitFuelEfficiency
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitIlluminance
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitIlluminance
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitInformationStorage
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitInformationStorage
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitLength
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitLength
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitMass
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitMass
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitPower
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitPower
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitPressure
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitPressure
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitSpeed
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitSpeed
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitTemperature
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitTemperature
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUnitVolume
Available on crate feature NSUnit
only.
impl BorrowMut<NSObject> for NSUnitVolume
NSUnit
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserActivity
Available on crate feature NSUserActivity
only.
impl BorrowMut<NSObject> for NSUserActivity
NSUserActivity
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserAppleScriptTask
Available on crate feature NSUserScriptTask
only.
impl BorrowMut<NSObject> for NSUserAppleScriptTask
NSUserScriptTask
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserAutomatorTask
Available on crate feature NSUserScriptTask
only.
impl BorrowMut<NSObject> for NSUserAutomatorTask
NSUserScriptTask
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserDefaults
Available on crate feature NSUserDefaults
only.
impl BorrowMut<NSObject> for NSUserDefaults
NSUserDefaults
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserNotification
Available on crate feature NSUserNotification
only.
impl BorrowMut<NSObject> for NSUserNotification
NSUserNotification
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserNotificationAction
Available on crate feature NSUserNotification
only.
impl BorrowMut<NSObject> for NSUserNotificationAction
NSUserNotification
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserNotificationCenter
Available on crate feature NSUserNotification
only.
impl BorrowMut<NSObject> for NSUserNotificationCenter
NSUserNotification
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserScriptTask
Available on crate feature NSUserScriptTask
only.
impl BorrowMut<NSObject> for NSUserScriptTask
NSUserScriptTask
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUserUnixTask
Available on crate feature NSUserScriptTask
only.
impl BorrowMut<NSObject> for NSUserUnixTask
NSUserScriptTask
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSValue
Available on crate feature NSValue
only.
impl BorrowMut<NSObject> for NSValue
NSValue
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSValueTransformer
Available on crate feature NSValueTransformer
only.
impl BorrowMut<NSObject> for NSValueTransformer
NSValueTransformer
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSWhoseSpecifier
Available on crate feature NSScriptObjectSpecifiers
only.
impl BorrowMut<NSObject> for NSWhoseSpecifier
NSScriptObjectSpecifiers
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXMLDTD
Available on crate feature NSXMLDTD
only.
impl BorrowMut<NSObject> for NSXMLDTD
NSXMLDTD
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXMLDTDNode
Available on crate feature NSXMLDTDNode
only.
impl BorrowMut<NSObject> for NSXMLDTDNode
NSXMLDTDNode
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXMLDocument
Available on crate feature NSXMLDocument
only.
impl BorrowMut<NSObject> for NSXMLDocument
NSXMLDocument
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXMLElement
Available on crate feature NSXMLElement
only.
impl BorrowMut<NSObject> for NSXMLElement
NSXMLElement
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXMLNode
Available on crate feature NSXMLNode
only.
impl BorrowMut<NSObject> for NSXMLNode
NSXMLNode
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXMLParser
Available on crate feature NSXMLParser
only.
impl BorrowMut<NSObject> for NSXMLParser
NSXMLParser
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXPCCoder
Available on crate feature NSXPCConnection
only.
impl BorrowMut<NSObject> for NSXPCCoder
NSXPCConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXPCConnection
Available on crate feature NSXPCConnection
only.
impl BorrowMut<NSObject> for NSXPCConnection
NSXPCConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXPCInterface
Available on crate feature NSXPCConnection
only.
impl BorrowMut<NSObject> for NSXPCInterface
NSXPCConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXPCListener
Available on crate feature NSXPCConnection
only.
impl BorrowMut<NSObject> for NSXPCListener
NSXPCConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSXPCListenerEndpoint
Available on crate feature NSXPCConnection
only.
impl BorrowMut<NSObject> for NSXPCListenerEndpoint
NSXPCConnection
only.source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl ClassType for NSObject
impl ClassType for NSObject
§type Mutability = Root
type Mutability = Root
source§const NAME: &'static str = "NSObject"
const NAME: &'static str = "NSObject"
source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
source§fn as_super(&self) -> &<NSObject as ClassType>::Super
fn as_super(&self) -> &<NSObject as ClassType>::Super
source§impl DefaultRetained for NSObject
impl DefaultRetained for NSObject
source§impl Hash for NSObject
impl Hash for NSObject
Hashing in Objective-C has the exact same requirement as in Rust:
If two objects are equal (as determined by the isEqual: method), they must have the same hash value.
See https://developer.apple.com/documentation/objectivec/1418956-nsobject/1418859-hash
source§impl NSObjectNSArchiverCallback for NSObject
Available on crate feature NSArchiver
only.
impl NSObjectNSArchiverCallback for NSObject
NSArchiver
only.source§impl NSObjectNSClassDescriptionPrimitives for NSObject
Available on crate feature NSClassDescription
only.
impl NSObjectNSClassDescriptionPrimitives for NSObject
NSClassDescription
only.unsafe fn classDescription(&self) -> Retained<NSClassDescription>
source§unsafe fn attributeKeys(&self) -> Retained<NSArray<NSString>>
unsafe fn attributeKeys(&self) -> Retained<NSArray<NSString>>
NSArray
and NSString
only.source§unsafe fn toOneRelationshipKeys(&self) -> Retained<NSArray<NSString>>
unsafe fn toOneRelationshipKeys(&self) -> Retained<NSArray<NSString>>
NSArray
and NSString
only.source§impl NSObjectNSCoderMethods for NSObject
Available on crate feature NSObject
only.
impl NSObjectNSCoderMethods for NSObject
NSObject
only.source§impl NSObjectNSComparisonMethods for NSObject
Available on crate feature NSScriptWhoseTests
only.
impl NSObjectNSComparisonMethods for NSObject
NSScriptWhoseTests
only.unsafe fn isEqualTo(&self, object: Option<&AnyObject>) -> bool
unsafe fn isLessThanOrEqualTo(&self, object: Option<&AnyObject>) -> bool
unsafe fn isLessThan(&self, object: Option<&AnyObject>) -> bool
unsafe fn isGreaterThanOrEqualTo(&self, object: Option<&AnyObject>) -> bool
unsafe fn isGreaterThan(&self, object: Option<&AnyObject>) -> bool
unsafe fn isNotEqualTo(&self, object: Option<&AnyObject>) -> bool
unsafe fn doesContain(&self, object: &AnyObject) -> bool
source§impl NSObjectNSDelayedPerforming for NSObject
Available on crate feature NSRunLoop
only.
impl NSObjectNSDelayedPerforming for NSObject
NSRunLoop
only.source§unsafe fn performSelector_withObject_afterDelay_inModes(
&self,
a_selector: Sel,
an_argument: Option<&AnyObject>,
delay: NSTimeInterval,
modes: &NSArray<NSRunLoopMode>
)
unsafe fn performSelector_withObject_afterDelay_inModes( &self, a_selector: Sel, an_argument: Option<&AnyObject>, delay: NSTimeInterval, modes: &NSArray<NSRunLoopMode> )
NSArray
and NSDate
and NSObjCRuntime
and NSString
only.source§unsafe fn performSelector_withObject_afterDelay(
&self,
a_selector: Sel,
an_argument: Option<&AnyObject>,
delay: NSTimeInterval
)
unsafe fn performSelector_withObject_afterDelay( &self, a_selector: Sel, an_argument: Option<&AnyObject>, delay: NSTimeInterval )
NSDate
only.unsafe fn cancelPreviousPerformRequestsWithTarget_selector_object( a_target: &AnyObject, a_selector: Sel, an_argument: Option<&AnyObject> )
unsafe fn cancelPreviousPerformRequestsWithTarget(a_target: &AnyObject)
source§impl NSObjectNSDiscardableContentProxy for NSObject
Available on crate feature NSObject
only.
impl NSObjectNSDiscardableContentProxy for NSObject
NSObject
only.source§impl NSObjectNSErrorRecoveryAttempting for NSObject
Available on crate feature NSError
only.
impl NSObjectNSErrorRecoveryAttempting for NSObject
NSError
only.unsafe fn attemptRecoveryFromError_optionIndex_delegate_didRecoverSelector_contextInfo( &self, error: &NSError, recovery_option_index: NSUInteger, delegate: Option<&AnyObject>, did_recover_selector: Option<Sel>, context_info: *mut c_void )
unsafe fn attemptRecoveryFromError_optionIndex( &self, error: &NSError, recovery_option_index: NSUInteger ) -> bool
source§impl NSObjectNSKeyValueCoding for NSObject
Available on crate feature NSKeyValueCoding
only.
impl NSObjectNSKeyValueCoding for NSObject
NSKeyValueCoding
only.unsafe fn accessInstanceVariablesDirectly() -> bool
source§unsafe fn valueForKey(&self, key: &NSString) -> Option<Retained<AnyObject>>
unsafe fn valueForKey(&self, key: &NSString) -> Option<Retained<AnyObject>>
NSString
only.source§unsafe fn setValue_forKey(&self, value: Option<&AnyObject>, key: &NSString)
unsafe fn setValue_forKey(&self, value: Option<&AnyObject>, key: &NSString)
NSString
only.source§unsafe fn validateValue_forKey_error(
&self,
io_value: &mut Option<Retained<AnyObject>>,
in_key: &NSString
) -> Result<(), Retained<NSError>>
unsafe fn validateValue_forKey_error( &self, io_value: &mut Option<Retained<AnyObject>>, in_key: &NSString ) -> Result<(), Retained<NSError>>
NSError
and NSString
only.source§unsafe fn mutableArrayValueForKey(
&self,
key: &NSString
) -> Retained<NSMutableArray>
unsafe fn mutableArrayValueForKey( &self, key: &NSString ) -> Retained<NSMutableArray>
NSArray
and NSString
only.source§unsafe fn mutableOrderedSetValueForKey(
&self,
key: &NSString
) -> Retained<NSMutableOrderedSet>
unsafe fn mutableOrderedSetValueForKey( &self, key: &NSString ) -> Retained<NSMutableOrderedSet>
NSOrderedSet
and NSString
only.source§unsafe fn mutableSetValueForKey(&self, key: &NSString) -> Retained<NSMutableSet>
unsafe fn mutableSetValueForKey(&self, key: &NSString) -> Retained<NSMutableSet>
NSSet
and NSString
only.source§unsafe fn valueForKeyPath(
&self,
key_path: &NSString
) -> Option<Retained<AnyObject>>
unsafe fn valueForKeyPath( &self, key_path: &NSString ) -> Option<Retained<AnyObject>>
NSString
only.source§unsafe fn setValue_forKeyPath(
&self,
value: Option<&AnyObject>,
key_path: &NSString
)
unsafe fn setValue_forKeyPath( &self, value: Option<&AnyObject>, key_path: &NSString )
NSString
only.source§unsafe fn validateValue_forKeyPath_error(
&self,
io_value: &mut Option<Retained<AnyObject>>,
in_key_path: &NSString
) -> Result<(), Retained<NSError>>
unsafe fn validateValue_forKeyPath_error( &self, io_value: &mut Option<Retained<AnyObject>>, in_key_path: &NSString ) -> Result<(), Retained<NSError>>
NSError
and NSString
only.source§unsafe fn mutableArrayValueForKeyPath(
&self,
key_path: &NSString
) -> Retained<NSMutableArray>
unsafe fn mutableArrayValueForKeyPath( &self, key_path: &NSString ) -> Retained<NSMutableArray>
NSArray
and NSString
only.source§unsafe fn mutableOrderedSetValueForKeyPath(
&self,
key_path: &NSString
) -> Retained<NSMutableOrderedSet>
unsafe fn mutableOrderedSetValueForKeyPath( &self, key_path: &NSString ) -> Retained<NSMutableOrderedSet>
NSOrderedSet
and NSString
only.source§unsafe fn mutableSetValueForKeyPath(
&self,
key_path: &NSString
) -> Retained<NSMutableSet>
unsafe fn mutableSetValueForKeyPath( &self, key_path: &NSString ) -> Retained<NSMutableSet>
NSSet
and NSString
only.source§unsafe fn valueForUndefinedKey(
&self,
key: &NSString
) -> Option<Retained<AnyObject>>
unsafe fn valueForUndefinedKey( &self, key: &NSString ) -> Option<Retained<AnyObject>>
NSString
only.source§unsafe fn setValue_forUndefinedKey(
&self,
value: Option<&AnyObject>,
key: &NSString
)
unsafe fn setValue_forUndefinedKey( &self, value: Option<&AnyObject>, key: &NSString )
NSString
only.source§unsafe fn setNilValueForKey(&self, key: &NSString)
unsafe fn setNilValueForKey(&self, key: &NSString)
NSString
only.source§unsafe fn dictionaryWithValuesForKeys(
&self,
keys: &NSArray<NSString>
) -> Retained<NSDictionary<NSString, AnyObject>>
unsafe fn dictionaryWithValuesForKeys( &self, keys: &NSArray<NSString> ) -> Retained<NSDictionary<NSString, AnyObject>>
NSArray
and NSDictionary
and NSString
only.source§unsafe fn setValuesForKeysWithDictionary(
&self,
keyed_values: &NSDictionary<NSString, AnyObject>
)
unsafe fn setValuesForKeysWithDictionary( &self, keyed_values: &NSDictionary<NSString, AnyObject> )
NSDictionary
and NSString
only.source§impl NSObjectNSKeyValueObserverNotification for NSObject
Available on crate feature NSKeyValueObserving
only.
impl NSObjectNSKeyValueObserverNotification for NSObject
NSKeyValueObserving
only.source§unsafe fn willChangeValueForKey(&self, key: &NSString)
unsafe fn willChangeValueForKey(&self, key: &NSString)
NSString
only.source§unsafe fn didChangeValueForKey(&self, key: &NSString)
unsafe fn didChangeValueForKey(&self, key: &NSString)
NSString
only.source§unsafe fn willChange_valuesAtIndexes_forKey(
&self,
change_kind: NSKeyValueChange,
indexes: &NSIndexSet,
key: &NSString
)
unsafe fn willChange_valuesAtIndexes_forKey( &self, change_kind: NSKeyValueChange, indexes: &NSIndexSet, key: &NSString )
NSIndexSet
and NSString
only.source§unsafe fn didChange_valuesAtIndexes_forKey(
&self,
change_kind: NSKeyValueChange,
indexes: &NSIndexSet,
key: &NSString
)
unsafe fn didChange_valuesAtIndexes_forKey( &self, change_kind: NSKeyValueChange, indexes: &NSIndexSet, key: &NSString )
NSIndexSet
and NSString
only.source§unsafe fn willChangeValueForKey_withSetMutation_usingObjects(
&self,
key: &NSString,
mutation_kind: NSKeyValueSetMutationKind,
objects: &NSSet
)
unsafe fn willChangeValueForKey_withSetMutation_usingObjects( &self, key: &NSString, mutation_kind: NSKeyValueSetMutationKind, objects: &NSSet )
NSSet
and NSString
only.source§unsafe fn didChangeValueForKey_withSetMutation_usingObjects(
&self,
key: &NSString,
mutation_kind: NSKeyValueSetMutationKind,
objects: &NSSet
)
unsafe fn didChangeValueForKey_withSetMutation_usingObjects( &self, key: &NSString, mutation_kind: NSKeyValueSetMutationKind, objects: &NSSet )
NSSet
and NSString
only.source§impl NSObjectNSKeyValueObserverRegistration for NSObject
Available on crate feature NSKeyValueObserving
only.
impl NSObjectNSKeyValueObserverRegistration for NSObject
NSKeyValueObserving
only.source§unsafe fn addObserver_forKeyPath_options_context(
&self,
observer: &NSObject,
key_path: &NSString,
options: NSKeyValueObservingOptions,
context: *mut c_void
)
unsafe fn addObserver_forKeyPath_options_context( &self, observer: &NSObject, key_path: &NSString, options: NSKeyValueObservingOptions, context: *mut c_void )
NSString
only.source§impl NSObjectNSKeyValueObserving for NSObject
Available on crate feature NSKeyValueObserving
only.
impl NSObjectNSKeyValueObserving for NSObject
NSKeyValueObserving
only.source§unsafe fn observeValueForKeyPath_ofObject_change_context(
&self,
key_path: Option<&NSString>,
object: Option<&AnyObject>,
change: Option<&NSDictionary<NSKeyValueChangeKey, AnyObject>>,
context: *mut c_void
)
unsafe fn observeValueForKeyPath_ofObject_change_context( &self, key_path: Option<&NSString>, object: Option<&AnyObject>, change: Option<&NSDictionary<NSKeyValueChangeKey, AnyObject>>, context: *mut c_void )
NSDictionary
and NSString
only.source§impl NSObjectNSKeyValueObservingCustomization for NSObject
Available on crate feature NSKeyValueObserving
only.
impl NSObjectNSKeyValueObservingCustomization for NSObject
NSKeyValueObserving
only.source§unsafe fn keyPathsForValuesAffectingValueForKey(
key: &NSString
) -> Retained<NSSet<NSString>>
unsafe fn keyPathsForValuesAffectingValueForKey( key: &NSString ) -> Retained<NSSet<NSString>>
NSSet
and NSString
only.source§unsafe fn automaticallyNotifiesObserversForKey(key: &NSString) -> bool
unsafe fn automaticallyNotifiesObserversForKey(key: &NSString) -> bool
NSString
only.unsafe fn observationInfo(&self) -> *mut c_void
unsafe fn setObservationInfo(&self, observation_info: *mut c_void)
source§impl NSObjectNSKeyedArchiverObjectSubstitution for NSObject
Available on crate feature NSKeyedArchiver
only.
impl NSObjectNSKeyedArchiverObjectSubstitution for NSObject
NSKeyedArchiver
only.unsafe fn classForKeyedArchiver(&self) -> Option<&'static AnyClass>
source§unsafe fn replacementObjectForKeyedArchiver(
&self,
archiver: &NSKeyedArchiver
) -> Option<Retained<AnyObject>>
unsafe fn replacementObjectForKeyedArchiver( &self, archiver: &NSKeyedArchiver ) -> Option<Retained<AnyObject>>
NSCoder
only.source§impl NSObjectNSKeyedUnarchiverObjectSubstitution for NSObject
Available on crate feature NSKeyedArchiver
only.
impl NSObjectNSKeyedUnarchiverObjectSubstitution for NSObject
NSKeyedArchiver
only.source§impl NSObjectNSScriptClassDescription for NSObject
Available on crate feature NSScriptClassDescription
only.
impl NSObjectNSScriptClassDescription for NSObject
NSScriptClassDescription
only.source§impl NSObjectNSScriptKeyValueCoding for NSObject
Available on crate feature NSScriptKeyValueCoding
only.
impl NSObjectNSScriptKeyValueCoding for NSObject
NSScriptKeyValueCoding
only.source§unsafe fn valueAtIndex_inPropertyWithKey(
&self,
index: NSUInteger,
key: &NSString
) -> Option<Retained<AnyObject>>
unsafe fn valueAtIndex_inPropertyWithKey( &self, index: NSUInteger, key: &NSString ) -> Option<Retained<AnyObject>>
NSString
only.source§unsafe fn valueWithName_inPropertyWithKey(
&self,
name: &NSString,
key: &NSString
) -> Option<Retained<AnyObject>>
unsafe fn valueWithName_inPropertyWithKey( &self, name: &NSString, key: &NSString ) -> Option<Retained<AnyObject>>
NSString
only.source§unsafe fn valueWithUniqueID_inPropertyWithKey(
&self,
unique_id: &AnyObject,
key: &NSString
) -> Option<Retained<AnyObject>>
unsafe fn valueWithUniqueID_inPropertyWithKey( &self, unique_id: &AnyObject, key: &NSString ) -> Option<Retained<AnyObject>>
NSString
only.source§unsafe fn insertValue_atIndex_inPropertyWithKey(
&self,
value: &AnyObject,
index: NSUInteger,
key: &NSString
)
unsafe fn insertValue_atIndex_inPropertyWithKey( &self, value: &AnyObject, index: NSUInteger, key: &NSString )
NSString
only.source§unsafe fn removeValueAtIndex_fromPropertyWithKey(
&self,
index: NSUInteger,
key: &NSString
)
unsafe fn removeValueAtIndex_fromPropertyWithKey( &self, index: NSUInteger, key: &NSString )
NSString
only.source§unsafe fn replaceValueAtIndex_inPropertyWithKey_withValue(
&self,
index: NSUInteger,
key: &NSString,
value: &AnyObject
)
unsafe fn replaceValueAtIndex_inPropertyWithKey_withValue( &self, index: NSUInteger, key: &NSString, value: &AnyObject )
NSString
only.source§unsafe fn insertValue_inPropertyWithKey(
&self,
value: &AnyObject,
key: &NSString
)
unsafe fn insertValue_inPropertyWithKey( &self, value: &AnyObject, key: &NSString )
NSString
only.source§impl NSObjectNSScriptObjectSpecifiers for NSObject
Available on crate feature NSScriptObjectSpecifiers
only.
impl NSObjectNSScriptObjectSpecifiers for NSObject
NSScriptObjectSpecifiers
only.unsafe fn objectSpecifier(&self) -> Option<Retained<NSScriptObjectSpecifier>>
source§unsafe fn indicesOfObjectsByEvaluatingObjectSpecifier(
&self,
specifier: &NSScriptObjectSpecifier
) -> Option<Retained<NSArray<NSNumber>>>
unsafe fn indicesOfObjectsByEvaluatingObjectSpecifier( &self, specifier: &NSScriptObjectSpecifier ) -> Option<Retained<NSArray<NSNumber>>>
NSArray
and NSValue
only.source§impl NSObjectNSScripting for NSObject
Available on crate feature NSObjectScripting
only.
impl NSObjectNSScripting for NSObject
NSObjectScripting
only.source§unsafe fn scriptingValueForSpecifier(
&self,
object_specifier: &NSScriptObjectSpecifier
) -> Option<Retained<AnyObject>>
unsafe fn scriptingValueForSpecifier( &self, object_specifier: &NSScriptObjectSpecifier ) -> Option<Retained<AnyObject>>
NSScriptObjectSpecifiers
only.source§unsafe fn scriptingProperties(
&self
) -> Option<Retained<NSDictionary<NSString, AnyObject>>>
unsafe fn scriptingProperties( &self ) -> Option<Retained<NSDictionary<NSString, AnyObject>>>
NSDictionary
and NSString
only.source§unsafe fn setScriptingProperties(
&self,
scripting_properties: Option<&NSDictionary<NSString, AnyObject>>
)
unsafe fn setScriptingProperties( &self, scripting_properties: Option<&NSDictionary<NSString, AnyObject>> )
NSDictionary
and NSString
only.source§unsafe fn copyScriptingValue_forKey_withProperties(
&self,
value: &AnyObject,
key: &NSString,
properties: &NSDictionary<NSString, AnyObject>
) -> Option<Retained<AnyObject>>
unsafe fn copyScriptingValue_forKey_withProperties( &self, value: &AnyObject, key: &NSString, properties: &NSDictionary<NSString, AnyObject> ) -> Option<Retained<AnyObject>>
NSDictionary
and NSString
only.source§unsafe fn newScriptingObjectOfClass_forValueForKey_withContentsValue_properties(
&self,
object_class: &AnyClass,
key: &NSString,
contents_value: Option<&AnyObject>,
properties: &NSDictionary<NSString, AnyObject>
) -> Option<Retained<AnyObject>>
unsafe fn newScriptingObjectOfClass_forValueForKey_withContentsValue_properties( &self, object_class: &AnyClass, key: &NSString, contents_value: Option<&AnyObject>, properties: &NSDictionary<NSString, AnyObject> ) -> Option<Retained<AnyObject>>
NSDictionary
and NSString
only.source§impl NSObjectNSScriptingComparisonMethods for NSObject
Available on crate feature NSScriptWhoseTests
only.
impl NSObjectNSScriptingComparisonMethods for NSObject
NSScriptWhoseTests
only.unsafe fn scriptingIsEqualTo(&self, object: &AnyObject) -> bool
unsafe fn scriptingIsLessThanOrEqualTo(&self, object: &AnyObject) -> bool
unsafe fn scriptingIsLessThan(&self, object: &AnyObject) -> bool
unsafe fn scriptingIsGreaterThanOrEqualTo(&self, object: &AnyObject) -> bool
unsafe fn scriptingIsGreaterThan(&self, object: &AnyObject) -> bool
unsafe fn scriptingBeginsWith(&self, object: &AnyObject) -> bool
unsafe fn scriptingEndsWith(&self, object: &AnyObject) -> bool
unsafe fn scriptingContains(&self, object: &AnyObject) -> bool
source§impl NSObjectNSThreadPerformAdditions for NSObject
Available on crate feature NSThread
only.
impl NSObjectNSThreadPerformAdditions for NSObject
NSThread
only.source§unsafe fn performSelectorOnMainThread_withObject_waitUntilDone_modes(
&self,
a_selector: Sel,
arg: Option<&AnyObject>,
wait: bool,
array: Option<&NSArray<NSString>>
)
unsafe fn performSelectorOnMainThread_withObject_waitUntilDone_modes( &self, a_selector: Sel, arg: Option<&AnyObject>, wait: bool, array: Option<&NSArray<NSString>> )
NSArray
and NSString
only.unsafe fn performSelectorOnMainThread_withObject_waitUntilDone( &self, a_selector: Sel, arg: Option<&AnyObject>, wait: bool )
source§unsafe fn performSelector_onThread_withObject_waitUntilDone_modes(
&self,
a_selector: Sel,
thr: &NSThread,
arg: Option<&AnyObject>,
wait: bool,
array: Option<&NSArray<NSString>>
)
unsafe fn performSelector_onThread_withObject_waitUntilDone_modes( &self, a_selector: Sel, thr: &NSThread, arg: Option<&AnyObject>, wait: bool, array: Option<&NSArray<NSString>> )
NSArray
and NSString
only.unsafe fn performSelector_onThread_withObject_waitUntilDone( &self, a_selector: Sel, thr: &NSThread, arg: Option<&AnyObject>, wait: bool )
unsafe fn performSelectorInBackground_withObject( &self, a_selector: Sel, arg: Option<&AnyObject> )
source§impl NSObjectProtocol for NSObject
impl NSObjectProtocol for NSObject
source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
source§fn hash(&self) -> usize
fn hash(&self) -> usize
source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
source§fn debugDescription(&self) -> Retained<NSObject>
fn debugDescription(&self) -> Retained<NSObject>
source§impl PartialEq for NSObject
impl PartialEq for NSObject
Objective-C equality has approximately the same semantics as Rust equality (although less aptly specified).
At the very least, equality is expected to be symmetric and transitive, and that’s about the best we can do.
See also https://nshipster.com/equality/
source§impl RefEncode for NSObject
impl RefEncode for NSObject
source§const ENCODING_REF: Encoding = <AnyObject as crate::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <AnyObject as crate::RefEncode>::ENCODING_REF
impl Eq for NSObject
Most types’ equality is reflexive.
impl Message for NSObject
Auto Trait Implementations§
impl !Freeze for NSObject
impl !RefUnwindSafe for NSObject
impl !Send for NSObject
impl !Sync for NSObject
impl !Unpin for NSObject
impl !UnwindSafe for NSObject
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CounterpartOrSelf for T
impl<T> CounterpartOrSelf for T
§type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
Self
if the type has no
immutable counterpart. Read more§type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
Self
if the type has no
mutable counterpart. Read more