pub unsafe trait SCContentSharingPickerObserver: NSObjectProtocol {
    // Provided methods
    unsafe fn contentSharingPicker_didCancelForStream(
        &self,
        picker: &SCContentSharingPicker,
        stream: Option<&SCStream>
    )
       where Self: Sized + Message { ... }
    unsafe fn contentSharingPicker_didUpdateWithFilter_forStream(
        &self,
        picker: &SCContentSharingPicker,
        filter: &SCContentFilter,
        stream: Option<&SCStream>
    )
       where Self: Sized + Message { ... }
    unsafe fn contentSharingPickerStartDidFailWithError(&self, error: &NSError)
       where Self: Sized + Message { ... }
}
Available on crate feature SCContentSharingPicker only.

Provided Methods§

source

unsafe fn contentSharingPicker_didCancelForStream( &self, picker: &SCContentSharingPicker, stream: Option<&SCStream> )
where Self: Sized + Message,

Available on crate feature SCStream only.
source

unsafe fn contentSharingPicker_didUpdateWithFilter_forStream( &self, picker: &SCContentSharingPicker, filter: &SCContentFilter, stream: Option<&SCStream> )
where Self: Sized + Message,

Available on crate feature SCStream only.
source

unsafe fn contentSharingPickerStartDidFailWithError(&self, error: &NSError)
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn SCContentSharingPickerObserver

source§

const NAME: &'static str = "SCContentSharingPickerObserver"

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 SCContentSharingPickerObserver

Implementations on Foreign Types§

source§

impl<T> SCContentSharingPickerObserver for ProtocolObject<T>

Implementors§