pub unsafe trait UICalendarSelectionSingleDateDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn dateSelection_didSelectDate(
        &self,
        selection: &UICalendarSelectionSingleDate,
        date_components: Option<&NSDateComponents>
    )
       where Self: Sized + Message { ... }
    unsafe fn dateSelection_canSelectDate(
        &self,
        selection: &UICalendarSelectionSingleDate,
        date_components: Option<&NSDateComponents>
    ) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature UICalendarSelectionSingleDate only.

Provided Methods§

source

unsafe fn dateSelection_didSelectDate( &self, selection: &UICalendarSelectionSingleDate, date_components: Option<&NSDateComponents> )
where Self: Sized + Message,

Available on crate feature UICalendarSelection only.
source

unsafe fn dateSelection_canSelectDate( &self, selection: &UICalendarSelectionSingleDate, date_components: Option<&NSDateComponents> ) -> bool
where Self: Sized + Message,

Available on crate feature UICalendarSelection only.

Trait Implementations§

source§

impl ProtocolType for dyn UICalendarSelectionSingleDateDelegate

source§

const NAME: &'static str = "UICalendarSelectionSingleDateDelegate"

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 UICalendarSelectionSingleDateDelegate

Implementations on Foreign Types§

source§

impl<T> UICalendarSelectionSingleDateDelegate for ProtocolObject<T>

Implementors§