pub unsafe trait CopyingHelper: Message {
type Result: Message;
}NSObject only.Expand description
A helper type for implementing NSCopying.
NSCopying and NSMutableCopying do not in their signatures describe the
result type from the copying operation. This is problematic, as it means
that using them ends up falling back to AnyObject, which makes copying
much less useful and ergonomic.
To properly describe this, we need an associated type which describes the
actual result type from a copy. The associated type can’t be present
directly on the protocol traits themselves, however, since we want to use
them as e.g. ProtocolObject<dyn NSCopying>, so we introduce this helper
trait instead. See MutableCopyingHelper for the mutable variant.
We might be able to get rid of this hack once associated type defaults are stabilized.
§Safety
The Result type must be correct.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl<P: ?Sized> CopyingHelper for ProtocolObject<P>
impl<P: ?Sized> CopyingHelper for ProtocolObject<P>
type Result = ProtocolObject<P>
Implementors§
Source§impl CopyingHelper for NSAffineTransform
Available on crate feature NSAffineTransform only.
impl CopyingHelper for NSAffineTransform
NSAffineTransform only.type Result = NSAffineTransform
Source§impl CopyingHelper for NSAppleEventDescriptor
Available on crate feature NSAppleEventDescriptor only.
impl CopyingHelper for NSAppleEventDescriptor
NSAppleEventDescriptor only.Source§impl CopyingHelper for NSAppleScript
Available on crate feature NSAppleScript only.
impl CopyingHelper for NSAppleScript
NSAppleScript only.type Result = NSAppleScript
Source§impl CopyingHelper for NSAttributedString
Available on crate feature NSAttributedString only.
impl CopyingHelper for NSAttributedString
NSAttributedString only.type Result = NSAttributedString
Source§impl CopyingHelper for NSAttributedStringMarkdownParsingOptions
Available on crate feature NSAttributedString only.
impl CopyingHelper for NSAttributedStringMarkdownParsingOptions
NSAttributedString only.Source§impl CopyingHelper for NSAttributedStringMarkdownSourcePosition
Available on crate feature NSAttributedString only.
impl CopyingHelper for NSAttributedStringMarkdownSourcePosition
NSAttributedString only.Source§impl CopyingHelper for NSByteCountFormatter
Available on crate features NSFormatter and NSByteCountFormatter only.
impl CopyingHelper for NSByteCountFormatter
NSFormatter and NSByteCountFormatter only.Source§impl CopyingHelper for NSCachedURLResponse
Available on crate feature NSURLCache only.
impl CopyingHelper for NSCachedURLResponse
NSURLCache only.type Result = NSCachedURLResponse
Source§impl CopyingHelper for NSCalendar
Available on crate feature NSCalendar only.
impl CopyingHelper for NSCalendar
NSCalendar only.type Result = NSCalendar
Source§impl CopyingHelper for NSCalendarDate
Available on crate features NSDate and NSCalendarDate only.
impl CopyingHelper for NSCalendarDate
NSDate and NSCalendarDate only.type Result = NSCalendarDate
Source§impl CopyingHelper for NSCharacterSet
Available on crate feature NSCharacterSet only.
impl CopyingHelper for NSCharacterSet
NSCharacterSet only.type Result = NSCharacterSet
Source§impl CopyingHelper for NSComparisonPredicate
Available on crate features NSPredicate and NSComparisonPredicate only.
impl CopyingHelper for NSComparisonPredicate
NSPredicate and NSComparisonPredicate only.Source§impl CopyingHelper for NSCompoundPredicate
Available on crate features NSPredicate and NSCompoundPredicate only.
impl CopyingHelper for NSCompoundPredicate
NSPredicate and NSCompoundPredicate only.type Result = NSCompoundPredicate
Source§impl CopyingHelper for NSData
Available on crate feature NSData only.
impl CopyingHelper for NSData
NSData only.Source§impl CopyingHelper for NSDataDetector
Available on crate feature NSRegularExpression only.
impl CopyingHelper for NSDataDetector
NSRegularExpression only.type Result = NSDataDetector
Source§impl CopyingHelper for NSDate
Available on crate feature NSDate only.
impl CopyingHelper for NSDate
NSDate only.Source§impl CopyingHelper for NSDateComponents
Available on crate feature NSCalendar only.
impl CopyingHelper for NSDateComponents
NSCalendar only.type Result = NSDateComponents
Source§impl CopyingHelper for NSDateComponentsFormatter
Available on crate features NSFormatter and NSDateComponentsFormatter only.
impl CopyingHelper for NSDateComponentsFormatter
NSFormatter and NSDateComponentsFormatter only.Source§impl CopyingHelper for NSDateFormatter
Available on crate features NSFormatter and NSDateFormatter only.
impl CopyingHelper for NSDateFormatter
NSFormatter and NSDateFormatter only.type Result = NSDateFormatter
Source§impl CopyingHelper for NSDateInterval
Available on crate feature NSDateInterval only.
impl CopyingHelper for NSDateInterval
NSDateInterval only.type Result = NSDateInterval
Source§impl CopyingHelper for NSDateIntervalFormatter
Available on crate features NSFormatter and NSDateIntervalFormatter only.
impl CopyingHelper for NSDateIntervalFormatter
NSFormatter and NSDateIntervalFormatter only.Source§impl CopyingHelper for NSDecimalNumber
Available on crate features NSValue and NSDecimalNumber only.
impl CopyingHelper for NSDecimalNumber
NSValue and NSDecimalNumber only.type Result = NSDecimalNumber
Source§impl CopyingHelper for NSDimension
Available on crate feature NSUnit only.
impl CopyingHelper for NSDimension
NSUnit only.type Result = NSDimension
Source§impl CopyingHelper for NSEnergyFormatter
Available on crate features NSFormatter and NSEnergyFormatter only.
impl CopyingHelper for NSEnergyFormatter
NSFormatter and NSEnergyFormatter only.type Result = NSEnergyFormatter
Source§impl CopyingHelper for NSError
Available on crate feature NSError only.
impl CopyingHelper for NSError
NSError only.Source§impl CopyingHelper for NSException
Available on crate feature NSException only.
impl CopyingHelper for NSException
NSException only.type Result = NSException
Source§impl CopyingHelper for NSExpression
Available on crate feature NSExpression only.
impl CopyingHelper for NSExpression
NSExpression only.type Result = NSExpression
Source§impl CopyingHelper for NSExtensionItem
Available on crate feature NSExtensionItem only.
impl CopyingHelper for NSExtensionItem
NSExtensionItem only.type Result = NSExtensionItem
Source§impl CopyingHelper for NSFileSecurity
Available on crate feature NSURL only.
impl CopyingHelper for NSFileSecurity
NSURL only.type Result = NSFileSecurity
Source§impl CopyingHelper for NSFormatter
Available on crate feature NSFormatter only.
impl CopyingHelper for NSFormatter
NSFormatter only.type Result = NSFormatter
Source§impl CopyingHelper for NSHTTPURLResponse
Available on crate feature NSURLResponse only.
impl CopyingHelper for NSHTTPURLResponse
NSURLResponse only.type Result = NSHTTPURLResponse
Source§impl CopyingHelper for NSISO8601DateFormatter
Available on crate features NSFormatter and NSISO8601DateFormatter only.
impl CopyingHelper for NSISO8601DateFormatter
NSFormatter and NSISO8601DateFormatter only.Source§impl CopyingHelper for NSIndexPath
Available on crate feature NSIndexPath only.
impl CopyingHelper for NSIndexPath
NSIndexPath only.type Result = NSIndexPath
Source§impl CopyingHelper for NSIndexSet
Available on crate feature NSIndexSet only.
impl CopyingHelper for NSIndexSet
NSIndexSet only.type Result = NSIndexSet
Source§impl CopyingHelper for NSInflectionRule
Available on crate feature NSInflectionRule only.
impl CopyingHelper for NSInflectionRule
NSInflectionRule only.type Result = NSInflectionRule
Source§impl CopyingHelper for NSInflectionRuleExplicit
Available on crate feature NSInflectionRule only.
impl CopyingHelper for NSInflectionRuleExplicit
NSInflectionRule only.Source§impl CopyingHelper for NSItemProvider
Available on crate feature NSItemProvider only.
impl CopyingHelper for NSItemProvider
NSItemProvider only.type Result = NSItemProvider
Source§impl CopyingHelper for NSLengthFormatter
Available on crate features NSFormatter and NSLengthFormatter only.
impl CopyingHelper for NSLengthFormatter
NSFormatter and NSLengthFormatter only.type Result = NSLengthFormatter
Source§impl CopyingHelper for NSListFormatter
Available on crate features NSFormatter and NSListFormatter only.
impl CopyingHelper for NSListFormatter
NSFormatter and NSListFormatter only.type Result = NSListFormatter
Source§impl CopyingHelper for NSLocale
Available on crate feature NSLocale only.
impl CopyingHelper for NSLocale
NSLocale only.Source§impl CopyingHelper for NSLocalizedNumberFormatRule
Available on crate feature NSLocalizedNumberFormatRule only.
impl CopyingHelper for NSLocalizedNumberFormatRule
NSLocalizedNumberFormatRule only.Source§impl CopyingHelper for NSMachPort
Available on crate feature NSPort only.
impl CopyingHelper for NSMachPort
NSPort only.type Result = NSMachPort
Source§impl CopyingHelper for NSMassFormatter
Available on crate features NSFormatter and NSMassFormatter only.
impl CopyingHelper for NSMassFormatter
NSFormatter and NSMassFormatter only.type Result = NSMassFormatter
Source§impl CopyingHelper for NSMeasurementFormatter
Available on crate features NSFormatter and NSMeasurementFormatter only.
impl CopyingHelper for NSMeasurementFormatter
NSFormatter and NSMeasurementFormatter only.Source§impl CopyingHelper for NSMessagePort
Available on crate feature NSPort only.
impl CopyingHelper for NSMessagePort
NSPort only.type Result = NSMessagePort
Source§impl CopyingHelper for NSMorphology
Available on crate feature NSMorphology only.
impl CopyingHelper for NSMorphology
NSMorphology only.type Result = NSMorphology
Source§impl CopyingHelper for NSMorphologyCustomPronoun
Available on crate feature NSMorphology only.
impl CopyingHelper for NSMorphologyCustomPronoun
NSMorphology only.Source§impl CopyingHelper for NSMorphologyPronoun
Available on crate feature NSMorphology only.
impl CopyingHelper for NSMorphologyPronoun
NSMorphology only.type Result = NSMorphologyPronoun
Source§impl CopyingHelper for NSMutableAttributedString
Available on crate feature NSAttributedString only.
impl CopyingHelper for NSMutableAttributedString
NSAttributedString only.type Result = NSAttributedString
Source§impl CopyingHelper for NSMutableCharacterSet
Available on crate feature NSCharacterSet only.
impl CopyingHelper for NSMutableCharacterSet
NSCharacterSet only.type Result = NSCharacterSet
Source§impl CopyingHelper for NSMutableData
Available on crate feature NSData only.
impl CopyingHelper for NSMutableData
NSData only.Source§impl CopyingHelper for NSMutableIndexSet
Available on crate feature NSIndexSet only.
impl CopyingHelper for NSMutableIndexSet
NSIndexSet only.type Result = NSIndexSet
Source§impl CopyingHelper for NSMutableString
Available on crate feature NSString only.
impl CopyingHelper for NSMutableString
NSString only.Source§impl CopyingHelper for NSMutableURLRequest
Available on crate feature NSURLRequest only.
impl CopyingHelper for NSMutableURLRequest
NSURLRequest only.type Result = NSURLRequest
Source§impl CopyingHelper for NSNotification
Available on crate feature NSNotification only.
impl CopyingHelper for NSNotification
NSNotification only.type Result = NSNotification
Source§impl CopyingHelper for NSNull
Available on crate feature NSNull only.
impl CopyingHelper for NSNull
NSNull only.Source§impl CopyingHelper for NSNumber
Available on crate feature NSValue only.
impl CopyingHelper for NSNumber
NSValue only.Source§impl CopyingHelper for NSNumberFormatter
Available on crate features NSFormatter and NSNumberFormatter only.
impl CopyingHelper for NSNumberFormatter
NSFormatter and NSNumberFormatter only.type Result = NSNumberFormatter
Source§impl CopyingHelper for NSOrthography
Available on crate feature NSOrthography only.
impl CopyingHelper for NSOrthography
NSOrthography only.type Result = NSOrthography
Source§impl CopyingHelper for NSPersonNameComponents
Available on crate feature NSPersonNameComponents only.
impl CopyingHelper for NSPersonNameComponents
NSPersonNameComponents only.Source§impl CopyingHelper for NSPersonNameComponentsFormatter
Available on crate features NSFormatter and NSPersonNameComponentsFormatter only.
impl CopyingHelper for NSPersonNameComponentsFormatter
NSFormatter and NSPersonNameComponentsFormatter only.Source§impl CopyingHelper for NSPointerArray
Available on crate feature NSPointerArray only.
impl CopyingHelper for NSPointerArray
NSPointerArray only.type Result = NSPointerArray
Source§impl CopyingHelper for NSPointerFunctions
Available on crate feature NSPointerFunctions only.
impl CopyingHelper for NSPointerFunctions
NSPointerFunctions only.type Result = NSPointerFunctions
Source§impl CopyingHelper for NSPort
Available on crate feature NSPort only.
impl CopyingHelper for NSPort
NSPort only.Source§impl CopyingHelper for NSPredicate
Available on crate feature NSPredicate only.
impl CopyingHelper for NSPredicate
NSPredicate only.type Result = NSPredicate
Source§impl CopyingHelper for NSPresentationIntent
Available on crate feature NSAttributedString only.
impl CopyingHelper for NSPresentationIntent
NSAttributedString only.Source§impl CopyingHelper for NSRegularExpression
Available on crate feature NSRegularExpression only.
impl CopyingHelper for NSRegularExpression
NSRegularExpression only.type Result = NSRegularExpression
Source§impl CopyingHelper for NSRelativeDateTimeFormatter
Available on crate features NSFormatter and NSRelativeDateTimeFormatter only.
impl CopyingHelper for NSRelativeDateTimeFormatter
NSFormatter and NSRelativeDateTimeFormatter only.Source§impl CopyingHelper for NSScanner
Available on crate feature NSScanner only.
impl CopyingHelper for NSScanner
NSScanner only.Source§impl CopyingHelper for NSSocketPort
Available on crate feature NSPort only.
impl CopyingHelper for NSSocketPort
NSPort only.type Result = NSSocketPort
Source§impl CopyingHelper for NSSortDescriptor
Available on crate feature NSSortDescriptor only.
impl CopyingHelper for NSSortDescriptor
NSSortDescriptor only.type Result = NSSortDescriptor
Source§impl CopyingHelper for NSString
Available on crate feature NSString only.
impl CopyingHelper for NSString
NSString only.Source§impl CopyingHelper for NSTermOfAddress
Available on crate feature NSTermOfAddress only.
impl CopyingHelper for NSTermOfAddress
NSTermOfAddress only.type Result = NSTermOfAddress
Source§impl CopyingHelper for NSTextCheckingResult
Available on crate feature NSTextCheckingResult only.
impl CopyingHelper for NSTextCheckingResult
NSTextCheckingResult only.Source§impl CopyingHelper for NSTimeZone
Available on crate feature NSTimeZone only.
impl CopyingHelper for NSTimeZone
NSTimeZone only.type Result = NSTimeZone
Source§impl CopyingHelper for NSURLComponents
Available on crate feature NSURL only.
impl CopyingHelper for NSURLComponents
NSURL only.type Result = NSURLComponents
Source§impl CopyingHelper for NSURLCredential
Available on crate feature NSURLCredential only.
impl CopyingHelper for NSURLCredential
NSURLCredential only.type Result = NSURLCredential
Source§impl CopyingHelper for NSURLProtectionSpace
Available on crate feature NSURLProtectionSpace only.
impl CopyingHelper for NSURLProtectionSpace
NSURLProtectionSpace only.Source§impl CopyingHelper for NSURLQueryItem
Available on crate feature NSURL only.
impl CopyingHelper for NSURLQueryItem
NSURL only.type Result = NSURLQueryItem
Source§impl CopyingHelper for NSURLRequest
Available on crate feature NSURLRequest only.
impl CopyingHelper for NSURLRequest
NSURLRequest only.type Result = NSURLRequest
Source§impl CopyingHelper for NSURLResponse
Available on crate feature NSURLResponse only.
impl CopyingHelper for NSURLResponse
NSURLResponse only.type Result = NSURLResponse
Source§impl CopyingHelper for NSURLSessionConfiguration
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionConfiguration
NSURLSession only.Source§impl CopyingHelper for NSURLSessionDataTask
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionDataTask
NSURLSession only.Source§impl CopyingHelper for NSURLSessionDownloadTask
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionDownloadTask
NSURLSession only.Source§impl CopyingHelper for NSURLSessionStreamTask
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionStreamTask
NSURLSession only.Source§impl CopyingHelper for NSURLSessionTask
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionTask
NSURLSession only.type Result = NSURLSessionTask
Source§impl CopyingHelper for NSURLSessionUploadTask
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionUploadTask
NSURLSession only.Source§impl CopyingHelper for NSURLSessionWebSocketTask
Available on crate feature NSURLSession only.
impl CopyingHelper for NSURLSessionWebSocketTask
NSURLSession only.Source§impl CopyingHelper for NSUUID
Available on crate feature NSUUID only.
impl CopyingHelper for NSUUID
NSUUID only.Source§impl CopyingHelper for NSUnit
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnit
NSUnit only.Source§impl CopyingHelper for NSUnitAcceleration
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitAcceleration
NSUnit only.type Result = NSUnitAcceleration
Source§impl CopyingHelper for NSUnitAngle
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitAngle
NSUnit only.type Result = NSUnitAngle
Source§impl CopyingHelper for NSUnitArea
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitArea
NSUnit only.type Result = NSUnitArea
Source§impl CopyingHelper for NSUnitConcentrationMass
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitConcentrationMass
NSUnit only.Source§impl CopyingHelper for NSUnitDispersion
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitDispersion
NSUnit only.type Result = NSUnitDispersion
Source§impl CopyingHelper for NSUnitDuration
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitDuration
NSUnit only.type Result = NSUnitDuration
Source§impl CopyingHelper for NSUnitElectricCharge
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitElectricCharge
NSUnit only.Source§impl CopyingHelper for NSUnitElectricCurrent
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitElectricCurrent
NSUnit only.Source§impl CopyingHelper for NSUnitElectricPotentialDifference
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitElectricPotentialDifference
NSUnit only.Source§impl CopyingHelper for NSUnitElectricResistance
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitElectricResistance
NSUnit only.Source§impl CopyingHelper for NSUnitEnergy
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitEnergy
NSUnit only.type Result = NSUnitEnergy
Source§impl CopyingHelper for NSUnitFrequency
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitFrequency
NSUnit only.type Result = NSUnitFrequency
Source§impl CopyingHelper for NSUnitFuelEfficiency
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitFuelEfficiency
NSUnit only.Source§impl CopyingHelper for NSUnitIlluminance
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitIlluminance
NSUnit only.type Result = NSUnitIlluminance
Source§impl CopyingHelper for NSUnitInformationStorage
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitInformationStorage
NSUnit only.Source§impl CopyingHelper for NSUnitLength
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitLength
NSUnit only.type Result = NSUnitLength
Source§impl CopyingHelper for NSUnitMass
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitMass
NSUnit only.type Result = NSUnitMass
Source§impl CopyingHelper for NSUnitPower
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitPower
NSUnit only.type Result = NSUnitPower
Source§impl CopyingHelper for NSUnitPressure
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitPressure
NSUnit only.type Result = NSUnitPressure
Source§impl CopyingHelper for NSUnitSpeed
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitSpeed
NSUnit only.type Result = NSUnitSpeed
Source§impl CopyingHelper for NSUnitTemperature
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitTemperature
NSUnit only.type Result = NSUnitTemperature
Source§impl CopyingHelper for NSUnitVolume
Available on crate feature NSUnit only.
impl CopyingHelper for NSUnitVolume
NSUnit only.type Result = NSUnitVolume
Source§impl CopyingHelper for NSUserNotification
Available on crate feature NSUserNotification only.
impl CopyingHelper for NSUserNotification
NSUserNotification only.type Result = NSUserNotification
Source§impl CopyingHelper for NSUserNotificationAction
Available on crate feature NSUserNotification only.
impl CopyingHelper for NSUserNotificationAction
NSUserNotification only.Source§impl CopyingHelper for NSValue
Available on crate feature NSValue only.
impl CopyingHelper for NSValue
NSValue only.Source§impl CopyingHelper for NSXMLDTD
Available on crate features NSXMLNode and NSXMLDTD only.
impl CopyingHelper for NSXMLDTD
NSXMLNode and NSXMLDTD only.Source§impl CopyingHelper for NSXMLDTDNode
Available on crate features NSXMLNode and NSXMLDTDNode only.
impl CopyingHelper for NSXMLDTDNode
NSXMLNode and NSXMLDTDNode only.type Result = NSXMLDTDNode
Source§impl CopyingHelper for NSXMLDocument
Available on crate features NSXMLNode and NSXMLDocument only.
impl CopyingHelper for NSXMLDocument
NSXMLNode and NSXMLDocument only.type Result = NSXMLDocument
Source§impl CopyingHelper for NSXMLElement
Available on crate features NSXMLNode and NSXMLElement only.
impl CopyingHelper for NSXMLElement
NSXMLNode and NSXMLElement only.type Result = NSXMLElement
Source§impl CopyingHelper for NSXMLNode
Available on crate feature NSXMLNode only.
impl CopyingHelper for NSXMLNode
NSXMLNode only.Source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> CopyingHelper for NSDictionary<KeyType, ObjectType>
Available on crate feature NSDictionary only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> CopyingHelper for NSDictionary<KeyType, ObjectType>
NSDictionary only.type Result = NSDictionary<KeyType, ObjectType>
Source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> CopyingHelper for NSMapTable<KeyType, ObjectType>
Available on crate feature NSMapTable only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> CopyingHelper for NSMapTable<KeyType, ObjectType>
NSMapTable only.type Result = NSMapTable<KeyType, ObjectType>
Source§impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> CopyingHelper for NSMutableDictionary<KeyType, ObjectType>
Available on crate feature NSDictionary only.
impl<KeyType: ?Sized + Message, ObjectType: ?Sized + Message> CopyingHelper for NSMutableDictionary<KeyType, ObjectType>
NSDictionary only.type Result = NSDictionary<KeyType, ObjectType>
Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSArray<ObjectType>
Available on crate feature NSArray only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSArray<ObjectType>
NSArray only.Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSHashTable<ObjectType>
Available on crate feature NSHashTable only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSHashTable<ObjectType>
NSHashTable only.type Result = NSHashTable<ObjectType>
Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSMutableArray<ObjectType>
Available on crate feature NSArray only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSMutableArray<ObjectType>
NSArray only.Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSMutableOrderedSet<ObjectType>
Available on crate feature NSOrderedSet only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSMutableOrderedSet<ObjectType>
NSOrderedSet only.type Result = NSOrderedSet<ObjectType>
Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSMutableSet<ObjectType>
Available on crate feature NSSet only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSMutableSet<ObjectType>
NSSet only.Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSOrderedSet<ObjectType>
Available on crate feature NSOrderedSet only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSOrderedSet<ObjectType>
NSOrderedSet only.type Result = NSOrderedSet<ObjectType>
Source§impl<ObjectType: ?Sized + Message> CopyingHelper for NSSet<ObjectType>
Available on crate feature NSSet only.
impl<ObjectType: ?Sized + Message> CopyingHelper for NSSet<ObjectType>
NSSet only.Source§impl<UnitType: ?Sized + Message + AsRef<NSUnit>> CopyingHelper for NSMeasurement<UnitType>
Available on crate features NSUnit and NSMeasurement only.
impl<UnitType: ?Sized + Message + AsRef<NSUnit>> CopyingHelper for NSMeasurement<UnitType>
NSUnit and NSMeasurement only.