#[repr(C)]pub struct NSData { /* private fields */ }
NSData
only.Expand description
************** Immutable Data ***************
See also Apple’s documentation
Implementations§
Source§impl NSData
impl NSData
Source§impl NSData
NSExtendedData.
impl NSData
NSExtendedData.
pub unsafe fn description(&self) -> Retained<NSString>
NSString
only.pub unsafe fn getBytes_length( &self, buffer: NonNull<c_void>, length: NSUInteger, )
pub unsafe fn getBytes_range(&self, buffer: NonNull<c_void>, range: NSRange)
NSRange
only.pub unsafe fn isEqualToData(&self, other: &NSData) -> bool
pub unsafe fn subdataWithRange(&self, range: NSRange) -> Retained<NSData>
NSRange
only.pub unsafe fn writeToFile_atomically( &self, path: &NSString, use_auxiliary_file: bool, ) -> bool
NSString
only.pub unsafe fn writeToURL_atomically( &self, url: &NSURL, atomically: bool, ) -> bool
NSURL
only.pub unsafe fn writeToFile_options_error( &self, path: &NSString, write_options_mask: NSDataWritingOptions, ) -> Result<(), Retained<NSError>>
NSError
and NSString
only.pub unsafe fn writeToURL_options_error( &self, url: &NSURL, write_options_mask: NSDataWritingOptions, ) -> Result<(), Retained<NSError>>
NSError
and NSURL
only.pub unsafe fn rangeOfData_options_range( &self, data_to_find: &NSData, mask: NSDataSearchOptions, search_range: NSRange, ) -> NSRange
NSRange
only.pub unsafe fn enumerateByteRangesUsingBlock( &self, block: &DynBlock<dyn Fn(NonNull<c_void>, NSRange, NonNull<Bool>) + '_>, )
NSRange
and block2
only.Source§impl NSData
NSDataCreation.
impl NSData
NSDataCreation.
pub unsafe fn data() -> Retained<Self>
pub unsafe fn dataWithBytes_length( bytes: *const c_void, length: NSUInteger, ) -> Retained<Self>
pub unsafe fn dataWithBytesNoCopy_length( bytes: NonNull<c_void>, length: NSUInteger, ) -> Retained<Self>
pub unsafe fn dataWithBytesNoCopy_length_freeWhenDone( bytes: NonNull<c_void>, length: NSUInteger, b: bool, ) -> Retained<Self>
pub unsafe fn dataWithContentsOfFile_options_error( path: &NSString, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError
and NSString
only.pub unsafe fn dataWithContentsOfURL_options_error( url: &NSURL, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError
and NSURL
only.pub unsafe fn dataWithContentsOfFile(path: &NSString) -> Option<Retained<Self>>
NSString
only.pub unsafe fn dataWithContentsOfURL(url: &NSURL) -> Option<Retained<Self>>
NSURL
only.pub unsafe fn initWithBytes_length( this: Allocated<Self>, bytes: *const c_void, length: NSUInteger, ) -> Retained<Self>
pub unsafe fn initWithBytesNoCopy_length( this: Allocated<Self>, bytes: NonNull<c_void>, length: NSUInteger, ) -> Retained<Self>
pub unsafe fn initWithBytesNoCopy_length_freeWhenDone( this: Allocated<Self>, bytes: NonNull<c_void>, length: NSUInteger, b: bool, ) -> Retained<Self>
pub unsafe fn initWithBytesNoCopy_length_deallocator( this: Allocated<Self>, bytes: NonNull<c_void>, length: NSUInteger, deallocator: Option<&DynBlock<dyn Fn(NonNull<c_void>, NSUInteger)>>, ) -> Retained<Self>
block2
only.pub unsafe fn initWithContentsOfFile_options_error( this: Allocated<Self>, path: &NSString, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError
and NSString
only.pub unsafe fn initWithContentsOfURL_options_error( this: Allocated<Self>, url: &NSURL, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError
and NSURL
only.pub unsafe fn initWithContentsOfFile( this: Allocated<Self>, path: &NSString, ) -> Option<Retained<Self>>
NSString
only.pub unsafe fn initWithContentsOfURL( this: Allocated<Self>, url: &NSURL, ) -> Option<Retained<Self>>
NSURL
only.pub fn initWithData(this: Allocated<Self>, data: &NSData) -> Retained<Self>
pub fn dataWithData(data: &NSData) -> Retained<Self>
Source§impl NSData
NSDataBase64Encoding.
impl NSData
NSDataBase64Encoding.
pub unsafe fn initWithBase64EncodedString_options( this: Allocated<Self>, base64_string: &NSString, options: NSDataBase64DecodingOptions, ) -> Option<Retained<Self>>
NSString
only.pub unsafe fn base64EncodedStringWithOptions( &self, options: NSDataBase64EncodingOptions, ) -> Retained<NSString>
NSString
only.pub unsafe fn initWithBase64EncodedData_options( this: Allocated<Self>, base64_data: &NSData, options: NSDataBase64DecodingOptions, ) -> Option<Retained<Self>>
pub unsafe fn base64EncodedDataWithOptions( &self, options: NSDataBase64EncodingOptions, ) -> Retained<NSData>
Source§impl NSData
NSDataCompression.
impl NSData
NSDataCompression.
pub unsafe fn decompressedDataUsingAlgorithm_error( &self, algorithm: NSDataCompressionAlgorithm, ) -> Result<Retained<Self>, Retained<NSError>>
NSError
only.pub unsafe fn compressedDataUsingAlgorithm_error( &self, algorithm: NSDataCompressionAlgorithm, ) -> Result<Retained<Self>, Retained<NSError>>
NSError
only.Source§impl NSData
NSDeprecated.
impl NSData
NSDeprecated.
pub unsafe fn getBytes(&self, buffer: NonNull<c_void>)
pub unsafe fn dataWithContentsOfMappedFile( path: &NSString, ) -> Option<Retained<AnyObject>>
NSString
only.pub unsafe fn initWithContentsOfMappedFile( this: Allocated<Self>, path: &NSString, ) -> Option<Retained<Self>>
NSString
only.pub unsafe fn initWithBase64Encoding( this: Allocated<Self>, base64_string: &NSString, ) -> Option<Retained<Self>>
NSString
only.pub unsafe fn base64Encoding(&self) -> Retained<NSString>
NSString
only.Methods from Deref<Target = NSObject>§
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.
§Panics
May panic if the object is invalid (which may be the case for objects
returned from unavailable init
/new
methods).
§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 fn downcast_ref<T>(&self) -> Option<&T>where
T: DowncastTarget,
pub fn downcast_ref<T>(&self) -> Option<&T>where
T: DowncastTarget,
Attempt to downcast the object to a class of type T
.
This is the reference-variant. Use Retained::downcast
if you want
to convert a retained object to another type.
§Mutable classes
Some classes have immutable and mutable variants, such as NSString
and NSMutableString
.
When some Objective-C API signature says it gives you an immutable class, it generally expects you to not mutate that, even though it may technically be mutable “under the hood”.
So using this method to convert a NSString
to a NSMutableString
,
while not unsound, is generally frowned upon unless you created the
string yourself, or the API explicitly documents the string to be
mutable.
See Apple’s documentation on mutability and on
isKindOfClass:
for more details.
§Generic classes
Objective-C generics are called “lightweight generics”, and that’s because they aren’t exposed in the runtime. This makes it impossible to safely downcast to generic collections, so this is disallowed by this method.
You can, however, safely downcast to generic collections where all the
type-parameters are AnyObject
.
§Panics
This works internally by calling isKindOfClass:
. That means that the
object must have the instance method of that name, and an exception
will be thrown (if CoreFoundation is linked) or the process will abort
if that is not the case. In the vast majority of cases, you don’t need
to worry about this, since both root objects NSObject
and
NSProxy
implement this method.
§Examples
Cast an NSString
back and forth from NSObject
.
use objc2::rc::Retained;
use objc2_foundation::{NSObject, NSString};
let obj: Retained<NSObject> = NSString::new().into_super();
let string = obj.downcast_ref::<NSString>().unwrap();
// Or with `downcast`, if we do not need the object afterwards
let string = obj.downcast::<NSString>().unwrap();
Try (and fail) to cast an NSObject
to an NSString
.
use objc2_foundation::{NSObject, NSString};
let obj = NSObject::new();
assert!(obj.downcast_ref::<NSString>().is_none());
Try to cast to an array of strings.
use objc2_foundation::{NSArray, NSObject, NSString};
let arr = NSArray::from_retained_slice(&[NSObject::new()]);
// This is invalid and doesn't type check.
let arr = arr.downcast_ref::<NSArray<NSString>>();
This fails to compile, since it would require enumerating over the array to ensure that each element is of the desired type, which is a performance pitfall.
Downcast when processing each element instead.
use objc2_foundation::{NSArray, NSObject, NSString};
let arr = NSArray::from_retained_slice(&[NSObject::new()]);
for elem in arr {
if let Some(data) = elem.downcast_ref::<NSString>() {
// handle `data`
}
}
Trait Implementations§
Source§impl AsRef<NSData> for NSMutableData
impl AsRef<NSData> for NSMutableData
Source§impl AsRef<NSData> for NSPurgeableData
impl AsRef<NSData> for NSPurgeableData
Source§impl Borrow<NSData> for NSMutableData
impl Borrow<NSData> for NSMutableData
Source§impl Borrow<NSData> for NSPurgeableData
impl Borrow<NSData> for NSPurgeableData
Source§impl ClassType for NSData
impl ClassType for NSData
Source§const NAME: &'static str = "NSData"
const NAME: &'static str = "NSData"
Source§type ThreadKind = <<NSData as ClassType>::Super as ClassType>::ThreadKind
type ThreadKind = <<NSData as ClassType>::Super as ClassType>::ThreadKind
Source§impl CopyingHelper for NSData
Available on crate feature NSObject
only.
impl CopyingHelper for NSData
NSObject
only.Source§impl DefaultRetained for NSData
impl DefaultRetained for NSData
Source§impl<'a> IntoIterator for &'a NSData
impl<'a> IntoIterator for &'a NSData
Source§impl MutableCopyingHelper for NSData
Available on crate feature NSObject
only.
impl MutableCopyingHelper for NSData
NSObject
only.Source§type Result = NSMutableData
type Result = NSMutableData
Self
if the type has no
mutable counterpart. Read moreSource§impl NSCoding for NSData
impl NSCoding for NSData
Source§unsafe fn encodeWithCoder(&self, coder: &NSCoder)
unsafe fn encodeWithCoder(&self, coder: &NSCoder)
NSObject
and NSCoder
only.Source§impl NSCopying for NSData
impl NSCopying for NSData
Source§impl NSMutableCopying for NSData
impl NSMutableCopying for NSData
Source§impl NSObjectProtocol for NSData
impl NSObjectProtocol for NSData
Source§fn isEqual(&self, other: Option<&AnyObject>) -> bool
fn isEqual(&self, other: Option<&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
isKindOfClass
directly, or cast your objects with AnyObject::downcast_ref
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 NSSecureCoding for NSData
impl NSSecureCoding for NSData
Source§impl RefEncode for NSData
impl RefEncode for NSData
Source§const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF
Source§impl RetainedFromIterator<u8> for NSData
Available on crate feature block2
only.
impl RetainedFromIterator<u8> for NSData
block2
only.Source§fn retained_from_iter<I: IntoIterator<Item = u8>>(iter: I) -> Retained<Self>
fn retained_from_iter<I: IntoIterator<Item = u8>>(iter: I) -> Retained<Self>
Retained
from an iterator.Source§impl ToOwned for NSData
Available on crate feature NSObject
only.
impl ToOwned for NSData
NSObject
only.