pub unsafe trait NSFetchedResultsSectionInfo {
    // Provided methods
    unsafe fn name(&self) -> Retained<NSString>
       where Self: Sized + Message { ... }
    unsafe fn indexTitle(&self) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn numberOfObjects(&self) -> NSUInteger
       where Self: Sized + Message { ... }
    unsafe fn objects(&self) -> Option<Retained<NSArray>>
       where Self: Sized + Message { ... }
}
Available on crate feature NSFetchedResultsController only.

Provided Methods§

source

unsafe fn name(&self) -> Retained<NSString>
where Self: Sized + Message,

source

unsafe fn indexTitle(&self) -> Option<Retained<NSString>>
where Self: Sized + Message,

source

unsafe fn numberOfObjects(&self) -> NSUInteger
where Self: Sized + Message,

source

unsafe fn objects(&self) -> Option<Retained<NSArray>>
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn NSFetchedResultsSectionInfo

source§

const NAME: &'static str = "NSFetchedResultsSectionInfo"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn NSFetchedResultsSectionInfo

Implementations on Foreign Types§

source§

impl<T> NSFetchedResultsSectionInfo for ProtocolObject<T>

Implementors§