Struct objc2_foundation::NSDirectoryEnumerator
source · #[repr(C)]pub struct NSDirectoryEnumerator<ObjectType: ?Sized = AnyObject> { /* private fields */ }
Available on crate features
NSEnumerator
and NSFileManager
only.Implementations§
source§impl<ObjectType: Message> NSDirectoryEnumerator<ObjectType>
impl<ObjectType: Message> NSDirectoryEnumerator<ObjectType>
pub unsafe fn fileAttributes( &self ) -> Option<Retained<NSDictionary<NSFileAttributeKey, AnyObject>>>
Available on crate features
NSDictionary
and NSString
only.pub unsafe fn directoryAttributes( &self ) -> Option<Retained<NSDictionary<NSFileAttributeKey, AnyObject>>>
Available on crate features
NSDictionary
and NSString
only.pub unsafe fn isEnumeratingDirectoryPostOrder(&self) -> bool
pub unsafe fn skipDescendents(&mut self)
pub unsafe fn level(&self) -> NSUInteger
pub unsafe fn skipDescendants(&mut self)
Methods from Deref<Target = NSEnumerator<ObjectType>>§
pub fn nextObject(&mut self) -> Option<Retained<ObjectType>>
pub fn allObjects(&self) -> Retained<NSArray<ObjectType>>
Available on crate feature
NSArray
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.
§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 unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut
instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut
instead.Use Ivar::load_mut
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.
Trait Implementations§
source§impl<ObjectType: ?Sized + Message> AsMut<NSDirectoryEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> AsMut<NSDirectoryEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
source§impl<ObjectType: ?Sized + Message> AsMut<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> AsMut<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
source§fn as_mut(&mut self) -> &mut NSEnumerator<ObjectType>
fn as_mut(&mut self) -> &mut NSEnumerator<ObjectType>
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl<ObjectType: ?Sized + Message> AsRef<NSDirectoryEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> AsRef<NSDirectoryEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
source§impl<ObjectType: ?Sized + Message> AsRef<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> AsRef<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
source§fn as_ref(&self) -> &NSEnumerator<ObjectType>
fn as_ref(&self) -> &NSEnumerator<ObjectType>
Converts this type into a shared reference of the (usually inferred) input type.
source§impl<ObjectType: ?Sized + Message> Borrow<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> Borrow<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
source§fn borrow(&self) -> &NSEnumerator<ObjectType>
fn borrow(&self) -> &NSEnumerator<ObjectType>
Immutably borrows from an owned value. Read more
source§impl<ObjectType: ?Sized + Message> BorrowMut<AnyObject> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<AnyObject> for NSDirectoryEnumerator<ObjectType>
source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
Mutably borrows from an owned value. Read more
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSEnumerator<ObjectType>> for NSDirectoryEnumerator<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSEnumerator<ObjectType>
fn borrow_mut(&mut self) -> &mut NSEnumerator<ObjectType>
Mutably borrows from an owned value. Read more
source§impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> BorrowMut<NSObject> for NSDirectoryEnumerator<ObjectType>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
Mutably borrows from an owned value. Read more
source§impl<ObjectType: ?Sized + Message> ClassType for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> ClassType for NSDirectoryEnumerator<ObjectType>
§type Super = NSEnumerator<ObjectType>
type Super = NSEnumerator<ObjectType>
The superclass of this class. Read more
§type Mutability = Mutable
type Mutability = Mutable
Whether the type is mutable or immutable. Read more
source§const NAME: &'static str = "NSDirectoryEnumerator"
const NAME: &'static str = "NSDirectoryEnumerator"
The name of the Objective-C class that this type represents. Read more
source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
Get a reference to the Objective-C class that this type represents. Read more
source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
Get a mutable reference to the superclass.
source§impl<ObjectType: PartialEq + ?Sized> PartialEq for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: PartialEq + ?Sized> PartialEq for NSDirectoryEnumerator<ObjectType>
source§fn eq(&self, other: &NSDirectoryEnumerator<ObjectType>) -> bool
fn eq(&self, other: &NSDirectoryEnumerator<ObjectType>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<ObjectType: ?Sized + Message> RefEncode for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> RefEncode for NSDirectoryEnumerator<ObjectType>
source§const ENCODING_REF: Encoding = <NSEnumerator<ObjectType> as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSEnumerator<ObjectType> as ::objc2::RefEncode>::ENCODING_REF
The Objective-C type-encoding for a reference of this type. Read more
impl<ObjectType: Eq + ?Sized> Eq for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized + Message> Message for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized> NSFastEnumeration for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized> NSObjectProtocol for NSDirectoryEnumerator<ObjectType>
impl<ObjectType: ?Sized> StructuralPartialEq for NSDirectoryEnumerator<ObjectType>
Auto Trait Implementations§
impl<ObjectType = AnyObject> !Freeze for NSDirectoryEnumerator<ObjectType>
impl<ObjectType> RefUnwindSafe for NSDirectoryEnumerator<ObjectType>where
ObjectType: RefUnwindSafe + ?Sized,
impl<ObjectType = AnyObject> !Send for NSDirectoryEnumerator<ObjectType>
impl<ObjectType = AnyObject> !Sync for NSDirectoryEnumerator<ObjectType>
impl<ObjectType = AnyObject> !Unpin for NSDirectoryEnumerator<ObjectType>
impl<ObjectType = AnyObject> !UnwindSafe for NSDirectoryEnumerator<ObjectType>
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