pub unsafe trait NSCollectionViewSectionHeaderView: NSCollectionViewElement + IsMainThreadOnly {
    // Provided methods
    unsafe fn sectionCollapseButton(&self) -> Option<Id<NSButton>>
       where Self: Sized + Message { ... }
    unsafe fn setSectionCollapseButton(
        &self,
        section_collapse_button: Option<&NSButton>
    )
       where Self: Sized + Message { ... }
}
Available on crate features NSCollectionView and NSUserInterfaceItemIdentification only.

Provided Methods§

source

unsafe fn sectionCollapseButton(&self) -> Option<Id<NSButton>>
where Self: Sized + Message,

Available on crate features NSButton and NSControl and NSResponder and NSView only.
source

unsafe fn setSectionCollapseButton( &self, section_collapse_button: Option<&NSButton> )
where Self: Sized + Message,

Available on crate features NSButton and NSControl and NSResponder and NSView only.

Trait Implementations§

source§

impl ProtocolType for dyn NSCollectionViewSectionHeaderView

source§

const NAME: &'static str = "NSCollectionViewSectionHeaderView"

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 NSCollectionViewSectionHeaderView

Implementations on Foreign Types§

source§

impl<T> NSCollectionViewSectionHeaderView for ProtocolObject<T>

Implementors§