pub unsafe trait UICalendarSelectionMultiDateDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn multiDateSelection_didSelectDate(
        &self,
        selection: &UICalendarSelectionMultiDate,
        date_components: &NSDateComponents
    )
       where Self: Sized + Message { ... }
    unsafe fn multiDateSelection_didDeselectDate(
        &self,
        selection: &UICalendarSelectionMultiDate,
        date_components: &NSDateComponents
    )
       where Self: Sized + Message { ... }
    unsafe fn multiDateSelection_canSelectDate(
        &self,
        selection: &UICalendarSelectionMultiDate,
        date_components: &NSDateComponents
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn multiDateSelection_canDeselectDate(
        &self,
        selection: &UICalendarSelectionMultiDate,
        date_components: &NSDateComponents
    ) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature UICalendarSelectionMultiDate only.

Provided Methods§

source

unsafe fn multiDateSelection_didSelectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents )
where Self: Sized + Message,

Available on crate feature UICalendarSelection only.
source

unsafe fn multiDateSelection_didDeselectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents )
where Self: Sized + Message,

Available on crate feature UICalendarSelection only.
source

unsafe fn multiDateSelection_canSelectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents ) -> bool
where Self: Sized + Message,

Available on crate feature UICalendarSelection only.
source

unsafe fn multiDateSelection_canDeselectDate( &self, selection: &UICalendarSelectionMultiDate, date_components: &NSDateComponents ) -> bool
where Self: Sized + Message,

Available on crate feature UICalendarSelection only.

Trait Implementations§

source§

impl ProtocolType for dyn UICalendarSelectionMultiDateDelegate

source§

const NAME: &'static str = "UICalendarSelectionMultiDateDelegate"

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 UICalendarSelectionMultiDateDelegate

Implementations on Foreign Types§

source§

impl<T> UICalendarSelectionMultiDateDelegate for ProtocolObject<T>

Implementors§