pub struct NSMutableData { /* private fields */ }NSData only.Expand description
************** Mutable Data ***************
See also Apple’s documentation
Implementations§
Source§impl NSMutableData
impl NSMutableData
Source§impl NSMutableData
impl NSMutableData
Sourcepub unsafe fn as_mut_bytes_unchecked(&self) -> &mut [u8] ⓘ
pub unsafe fn as_mut_bytes_unchecked(&self) -> &mut [u8] ⓘ
A mutable view of the bytes in the data.
§Safety
No methods on the NSMutableData may be called while the returned
slice is alive.
pub fn extend_from_slice(&self, bytes: &[u8])
pub fn push(&self, byte: u8)
pub fn replace_range(&self, range: Range<usize>, bytes: &[u8])
NSRange only.pub fn set_bytes(&self, bytes: &[u8])
NSRange only.Source§impl NSMutableData
Methods declared on superclass NSData.
impl NSMutableData
Methods declared on superclass NSData.
NSDataCreation.
pub fn data() -> Retained<Self>
Sourcepub unsafe fn dataWithBytes_length(
bytes: *const c_void,
length: NSUInteger,
) -> Retained<Self>
pub unsafe fn dataWithBytes_length( bytes: *const c_void, length: NSUInteger, ) -> Retained<Self>
§Safety
bytes must be a valid pointer or null.
Sourcepub unsafe fn dataWithBytesNoCopy_length(
bytes: NonNull<c_void>,
length: NSUInteger,
) -> Retained<Self>
pub unsafe fn dataWithBytesNoCopy_length( bytes: NonNull<c_void>, length: NSUInteger, ) -> Retained<Self>
§Safety
bytes must be a valid pointer.
Sourcepub unsafe fn dataWithBytesNoCopy_length_freeWhenDone(
bytes: NonNull<c_void>,
length: NSUInteger,
b: bool,
) -> Retained<Self>
pub unsafe fn dataWithBytesNoCopy_length_freeWhenDone( bytes: NonNull<c_void>, length: NSUInteger, b: bool, ) -> Retained<Self>
§Safety
bytes must be a valid pointer.
pub fn dataWithContentsOfFile_options_error( path: &NSString, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError and NSString only.pub fn dataWithContentsOfURL_options_error( url: &NSURL, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError and NSURL only.pub fn dataWithContentsOfFile(path: &NSString) -> Option<Retained<Self>>
NSString only.pub fn dataWithContentsOfURL(url: &NSURL) -> Option<Retained<Self>>
NSURL only.Sourcepub unsafe fn initWithBytes_length(
this: Allocated<Self>,
bytes: *const c_void,
length: NSUInteger,
) -> Retained<Self>
pub unsafe fn initWithBytes_length( this: Allocated<Self>, bytes: *const c_void, length: NSUInteger, ) -> Retained<Self>
§Safety
bytes must be a valid pointer or null.
Sourcepub unsafe fn initWithBytesNoCopy_length(
this: Allocated<Self>,
bytes: NonNull<c_void>,
length: NSUInteger,
) -> Retained<Self>
pub unsafe fn initWithBytesNoCopy_length( this: Allocated<Self>, bytes: NonNull<c_void>, length: NSUInteger, ) -> Retained<Self>
§Safety
bytes must be a valid pointer.
Sourcepub unsafe fn initWithBytesNoCopy_length_freeWhenDone(
this: Allocated<Self>,
bytes: NonNull<c_void>,
length: NSUInteger,
b: bool,
) -> Retained<Self>
pub unsafe fn initWithBytesNoCopy_length_freeWhenDone( this: Allocated<Self>, bytes: NonNull<c_void>, length: NSUInteger, b: bool, ) -> Retained<Self>
§Safety
bytes must be a valid pointer.
Sourcepub 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>
Available on crate feature block2 only.
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.§Safety
bytes must be a valid pointer.
pub fn initWithContentsOfFile_options_error( this: Allocated<Self>, path: &NSString, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError and NSString only.pub fn initWithContentsOfURL_options_error( this: Allocated<Self>, url: &NSURL, read_options_mask: NSDataReadingOptions, ) -> Result<Retained<Self>, Retained<NSError>>
NSError and NSURL only.pub fn initWithContentsOfFile( this: Allocated<Self>, path: &NSString, ) -> Option<Retained<Self>>
NSString only.pub 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 NSMutableData
Methods declared on superclass NSData.
impl NSMutableData
Methods declared on superclass NSData.
NSDataBase64Encoding.
pub fn initWithBase64EncodedString_options( this: Allocated<Self>, base64_string: &NSString, options: NSDataBase64DecodingOptions, ) -> Option<Retained<Self>>
NSString only.pub fn initWithBase64EncodedData_options( this: Allocated<Self>, base64_data: &NSData, options: NSDataBase64DecodingOptions, ) -> Option<Retained<Self>>
Source§impl NSMutableData
Methods declared on superclass NSData.
impl NSMutableData
Methods declared on superclass NSData.
NSDeprecated.
pub fn initWithContentsOfMappedFile( this: Allocated<Self>, path: &NSString, ) -> Option<Retained<Self>>
NSString only.pub fn initWithBase64Encoding( this: Allocated<Self>, base64_string: &NSString, ) -> Option<Retained<Self>>
NSString only.Source§impl NSMutableData
impl NSMutableData
Sourcepub fn setLength(&self, length: NSUInteger)
pub fn setLength(&self, length: NSUInteger)
Setter for [length][Self::length].
Source§impl NSMutableData
Methods declared on superclass NSObject.
impl NSMutableData
Methods declared on superclass NSObject.
Source§impl NSMutableData
NSExtendedMutableData.
impl NSMutableData
NSExtendedMutableData.
Sourcepub unsafe fn appendBytes_length(
&self,
bytes: NonNull<c_void>,
length: NSUInteger,
)
pub unsafe fn appendBytes_length( &self, bytes: NonNull<c_void>, length: NSUInteger, )
§Safety
bytes must be a valid pointer.
pub fn appendData(&self, other: &NSData)
pub fn increaseLengthBy(&self, extra_length: NSUInteger)
Sourcepub unsafe fn replaceBytesInRange_withBytes(
&self,
range: NSRange,
bytes: NonNull<c_void>,
)
Available on crate feature NSRange only.
pub unsafe fn replaceBytesInRange_withBytes( &self, range: NSRange, bytes: NonNull<c_void>, )
NSRange only.§Safety
bytes must be a valid pointer.
pub fn resetBytesInRange(&self, range: NSRange)
NSRange only.pub fn setData(&self, data: &NSData)
Sourcepub unsafe fn replaceBytesInRange_withBytes_length(
&self,
range: NSRange,
replacement_bytes: *const c_void,
replacement_length: NSUInteger,
)
Available on crate feature NSRange only.
pub unsafe fn replaceBytesInRange_withBytes_length( &self, range: NSRange, replacement_bytes: *const c_void, replacement_length: NSUInteger, )
NSRange only.§Safety
replacement_bytes must be a valid pointer or null.
Source§impl NSMutableData
NSMutableDataCreation.
impl NSMutableData
NSMutableDataCreation.
pub fn dataWithCapacity(a_num_items: NSUInteger) -> Option<Retained<Self>>
pub fn dataWithLength(length: NSUInteger) -> Option<Retained<Self>>
pub fn initWithCapacity( this: Allocated<Self>, capacity: NSUInteger, ) -> Option<Retained<Self>>
pub fn initWithLength( this: Allocated<Self>, length: NSUInteger, ) -> Option<Retained<Self>>
Source§impl NSMutableData
NSMutableDataCompression.
impl NSMutableData
NSMutableDataCompression.
pub fn decompressUsingAlgorithm_error( &self, algorithm: NSDataCompressionAlgorithm, ) -> Result<(), Retained<NSError>>
NSError only.pub fn compressUsingAlgorithm_error( &self, algorithm: NSDataCompressionAlgorithm, ) -> Result<(), Retained<NSError>>
NSError only.Methods from Deref<Target = NSData>§
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
Sourcepub unsafe fn as_bytes_unchecked(&self) -> &[u8] ⓘ
pub unsafe fn as_bytes_unchecked(&self) -> &[u8] ⓘ
pub fn length(&self) -> NSUInteger
pub fn description(&self) -> Retained<NSString>
NSString only.Sourcepub unsafe fn getBytes_length(
&self,
buffer: NonNull<c_void>,
length: NSUInteger,
)
pub unsafe fn getBytes_length( &self, buffer: NonNull<c_void>, length: NSUInteger, )
§Safety
buffer must be a valid pointer.
Sourcepub unsafe fn getBytes_range(&self, buffer: NonNull<c_void>, range: NSRange)
Available on crate feature NSRange only.
pub unsafe fn getBytes_range(&self, buffer: NonNull<c_void>, range: NSRange)
NSRange only.§Safety
buffer must be a valid pointer.
pub fn isEqualToData(&self, other: &NSData) -> bool
pub fn subdataWithRange(&self, range: NSRange) -> Retained<NSData>
NSRange only.pub fn writeToFile_atomically( &self, path: &NSString, use_auxiliary_file: bool, ) -> bool
NSString only.pub fn writeToURL_atomically(&self, url: &NSURL, atomically: bool) -> bool
NSURL only.pub fn writeToFile_options_error( &self, path: &NSString, write_options_mask: NSDataWritingOptions, ) -> Result<(), Retained<NSError>>
NSError and NSString only.pub fn writeToURL_options_error( &self, url: &NSURL, write_options_mask: NSDataWritingOptions, ) -> Result<(), Retained<NSError>>
NSError and NSURL only.pub fn rangeOfData_options_range( &self, data_to_find: &NSData, mask: NSDataSearchOptions, search_range: NSRange, ) -> NSRange
NSRange only.pub fn enumerateByteRangesUsingBlock( &self, block: &DynBlock<dyn Fn(NonNull<c_void>, NSRange, NonNull<Bool>) + '_>, )
NSRange and block2 only.pub fn base64EncodedStringWithOptions( &self, options: NSDataBase64EncodingOptions, ) -> Retained<NSString>
NSString only.pub fn base64EncodedDataWithOptions( &self, options: NSDataBase64EncodingOptions, ) -> Retained<NSData>
pub fn decompressedDataUsingAlgorithm_error( &self, algorithm: NSDataCompressionAlgorithm, ) -> Result<Retained<Self>, Retained<NSError>>
NSError only.pub fn compressedDataUsingAlgorithm_error( &self, algorithm: NSDataCompressionAlgorithm, ) -> Result<Retained<Self>, Retained<NSError>>
NSError only.Sourcepub unsafe fn getBytes(&self, buffer: NonNull<c_void>)
👎Deprecated: This method is unsafe because it could potentially cause buffer overruns. Use -getBytes:length: instead.
pub unsafe fn getBytes(&self, buffer: NonNull<c_void>)
§Safety
buffer must be a valid pointer.
pub 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<AnyObject> for NSMutableData
impl AsRef<AnyObject> for NSMutableData
Source§impl AsRef<CFMutableData> for NSMutableData
Available on crate feature objc2-core-foundation only.
impl AsRef<CFMutableData> for NSMutableData
objc2-core-foundation only.Source§fn as_ref(&self) -> &CFMutableData
fn as_ref(&self) -> &CFMutableData
Source§impl AsRef<NSData> for NSMutableData
impl AsRef<NSData> for NSMutableData
Source§impl AsRef<NSMutableData> for CFMutableData
Available on crate feature objc2-core-foundation only.
impl AsRef<NSMutableData> for CFMutableData
objc2-core-foundation only.Source§fn as_ref(&self) -> &NSMutableData ⓘ
fn as_ref(&self) -> &NSMutableData ⓘ
Source§impl AsRef<NSMutableData> for NSMutableData
impl AsRef<NSMutableData> for NSMutableData
Source§impl AsRef<NSMutableData> for NSPurgeableData
impl AsRef<NSMutableData> for NSPurgeableData
Source§fn as_ref(&self) -> &NSMutableData ⓘ
fn as_ref(&self) -> &NSMutableData ⓘ
Source§impl AsRef<NSObject> for NSMutableData
impl AsRef<NSObject> for NSMutableData
Source§impl Borrow<AnyObject> for NSMutableData
impl Borrow<AnyObject> for NSMutableData
Source§impl Borrow<NSData> for NSMutableData
impl Borrow<NSData> for NSMutableData
Source§impl Borrow<NSMutableData> for NSPurgeableData
impl Borrow<NSMutableData> for NSPurgeableData
Source§impl Borrow<NSObject> for NSMutableData
impl Borrow<NSObject> for NSMutableData
Source§impl ClassType for NSMutableData
impl ClassType for NSMutableData
Source§const NAME: &'static str = "NSMutableData"
const NAME: &'static str = "NSMutableData"
Source§type ThreadKind = <<NSMutableData as ClassType>::Super as ClassType>::ThreadKind
type ThreadKind = <<NSMutableData as ClassType>::Super as ClassType>::ThreadKind
Source§impl CopyingHelper for NSMutableData
Available on crate feature NSObject only.
impl CopyingHelper for NSMutableData
NSObject only.Source§impl Debug for NSMutableData
impl Debug for NSMutableData
Source§impl DefaultRetained for NSMutableData
impl DefaultRetained for NSMutableData
Source§impl Deref for NSMutableData
impl Deref for NSMutableData
Source§impl<'a> Extend<&'a u8> for &NSMutableData
impl<'a> Extend<&'a u8> for &NSMutableData
Source§fn extend<T: IntoIterator<Item = &'a u8>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = &'a u8>>(&mut self, iter: T)
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)Source§impl Extend<u8> for &NSMutableData
impl Extend<u8> for &NSMutableData
Source§fn extend<T: IntoIterator<Item = u8>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = u8>>(&mut self, iter: T)
You should use extend_from_slice whenever possible, it is more
performant.
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)Source§impl Hash for NSMutableData
impl Hash for NSMutableData
Source§impl<'a> IntoIterator for &'a NSMutableData
impl<'a> IntoIterator for &'a NSMutableData
Source§impl Message for NSMutableData
impl Message for NSMutableData
Source§impl MutableCopyingHelper for NSMutableData
Available on crate feature NSObject only.
impl MutableCopyingHelper for NSMutableData
NSObject only.Source§type Result = NSMutableData
type Result = NSMutableData
Self if the type has no
mutable counterpart. Read moreSource§impl NSCoding for NSMutableData
impl NSCoding for NSMutableData
Source§unsafe fn encodeWithCoder(&self, coder: &NSCoder)
unsafe fn encodeWithCoder(&self, coder: &NSCoder)
NSObject and NSCoder only.Source§impl NSCopying for NSMutableData
impl NSCopying for NSMutableData
Source§impl NSMutableCopying for NSMutableData
impl NSMutableCopying for NSMutableData
Source§impl NSObjectProtocol for NSMutableData
impl NSObjectProtocol for NSMutableData
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_refSource§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 NSMutableData
impl NSSecureCoding for NSMutableData
Source§impl PartialEq for NSMutableData
impl PartialEq for NSMutableData
Source§impl RefEncode for NSMutableData
impl RefEncode for NSMutableData
Source§const ENCODING_REF: Encoding = <NSData as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSData as ::objc2::RefEncode>::ENCODING_REF
Source§impl RetainedFromIterator<u8> for NSMutableData
Available on crate feature block2 only.
impl RetainedFromIterator<u8> for NSMutableData
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 NSMutableData
Available on crate feature NSObject only.
impl ToOwned for NSMutableData
NSObject only.Source§type Owned = Retained<NSMutableData>
type Owned = Retained<NSMutableData>
Source§fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
1.63.0 · Source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Source§impl Write for &NSMutableData
Available on crate feature std only.
impl Write for &NSMutableData
std only.Source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Source§fn write_all(&mut self, buf: &[u8]) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<()>
Source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector)Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored)