#[repr(C)]pub struct CFMutableArray { /* private fields */ }
Available on crate feature
CFArray
only.Expand description
This is the type of a reference to mutable CFArrays.
See also Apple’s documentation
Methods from Deref<Target = CFType>§
Sourcepub fn downcast_ref<T: ConcreteType>(&self) -> Option<&T>
Available on crate feature CFBase
only.
pub fn downcast_ref<T: ConcreteType>(&self) -> Option<&T>
CFBase
only.Attempt to downcast the type to that of type T
.
This is the reference-variant. Use CFRetained::downcast
if you
want to convert a retained type. See also ConcreteType
for more
details on which types support being converted to.
Trait Implementations§
Source§impl AsRef<AnyObject> for CFMutableArray
impl AsRef<AnyObject> for CFMutableArray
Source§impl AsRef<CFArray> for CFMutableArray
impl AsRef<CFArray> for CFMutableArray
Source§impl AsRef<CFMutableArray> for CFMutableArray
impl AsRef<CFMutableArray> for CFMutableArray
Source§impl AsRef<CFType> for CFMutableArray
impl AsRef<CFType> for CFMutableArray
Source§impl Borrow<AnyObject> for CFMutableArray
impl Borrow<AnyObject> for CFMutableArray
Source§impl Borrow<CFArray> for CFMutableArray
impl Borrow<CFArray> for CFMutableArray
Source§impl Borrow<CFType> for CFMutableArray
impl Borrow<CFType> for CFMutableArray
Source§impl Debug for CFMutableArray
impl Debug for CFMutableArray
Source§impl Deref for CFMutableArray
impl Deref for CFMutableArray
Source§impl Hash for CFMutableArray
impl Hash for CFMutableArray
Source§impl Message for CFMutableArray
impl Message for CFMutableArray
Source§impl PartialEq for CFMutableArray
impl PartialEq for CFMutableArray
Source§impl RefEncode for CFMutableArray
impl RefEncode for CFMutableArray
Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
The Objective-C type-encoding for a reference of this type. Read more
Source§impl Type for CFMutableArray
impl Type for CFMutableArray
impl Eq for CFMutableArray
Auto Trait Implementations§
impl !Freeze for CFMutableArray
impl !RefUnwindSafe for CFMutableArray
impl !Send for CFMutableArray
impl !Sync for CFMutableArray
impl !Unpin for CFMutableArray
impl !UnwindSafe for CFMutableArray
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
Mutably borrows from an owned value. Read more