121 lines
2.7 KiB
Rust
121 lines
2.7 KiB
Rust
#![allow(unused_imports)]
|
|
use alloc::borrow::ToOwned;
|
|
|
|
use objc2::mutability::IsIdCloneable;
|
|
use objc2::rc::Retained;
|
|
use objc2::Message;
|
|
|
|
use crate::Foundation::{self, NSCopying, NSMutableCopying};
|
|
|
|
#[cfg(feature = "NSArray")]
|
|
impl<T: Message + IsIdCloneable> ToOwned for Foundation::NSArray<T> {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSArray")]
|
|
impl<T: Message + IsIdCloneable> ToOwned for Foundation::NSMutableArray<T> {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.mutableCopy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSData")]
|
|
impl ToOwned for Foundation::NSData {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSData")]
|
|
impl ToOwned for Foundation::NSMutableData {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.mutableCopy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSException")]
|
|
impl ToOwned for Foundation::NSException {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSSet")]
|
|
impl<T: Message + IsIdCloneable> ToOwned for Foundation::NSSet<T> {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSSet")]
|
|
impl<T: Message + IsIdCloneable> ToOwned for Foundation::NSMutableSet<T> {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.mutableCopy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSString")]
|
|
impl ToOwned for Foundation::NSString {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSString")]
|
|
impl ToOwned for Foundation::NSMutableString {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.mutableCopy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSAttributedString")]
|
|
impl ToOwned for Foundation::NSAttributedString {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSAttributedString")]
|
|
impl ToOwned for Foundation::NSMutableAttributedString {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.mutableCopy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSUUID")]
|
|
impl ToOwned for Foundation::NSUUID {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSValue")]
|
|
impl ToOwned for Foundation::NSValue {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "NSValue")]
|
|
impl ToOwned for Foundation::NSNumber {
|
|
type Owned = Retained<Self>;
|
|
fn to_owned(&self) -> Self::Owned {
|
|
self.copy()
|
|
}
|
|
}
|