pub unsafe trait UIGuidedAccessRestrictionDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn guidedAccessRestrictionIdentifiers(
        &self
    ) -> Option<Retained<NSArray<NSString>>>
       where Self: Sized + Message { ... }
    unsafe fn guidedAccessRestrictionWithIdentifier_didChangeState(
        &self,
        restriction_identifier: &NSString,
        new_restriction_state: UIGuidedAccessRestrictionState
    )
       where Self: Sized + Message { ... }
    unsafe fn textForGuidedAccessRestrictionWithIdentifier(
        &self,
        restriction_identifier: &NSString
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn detailTextForGuidedAccessRestrictionWithIdentifier(
        &self,
        restriction_identifier: &NSString
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
}
Available on crate feature UIGuidedAccess only.

Provided Methods§

source

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

source

unsafe fn guidedAccessRestrictionWithIdentifier_didChangeState( &self, restriction_identifier: &NSString, new_restriction_state: UIGuidedAccessRestrictionState )
where Self: Sized + Message,

source

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

source

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

Trait Implementations§

source§

impl ProtocolType for dyn UIGuidedAccessRestrictionDelegate

source§

const NAME: &'static str = "UIGuidedAccessRestrictionDelegate"

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 UIGuidedAccessRestrictionDelegate

Implementations on Foreign Types§

source§

impl<T> UIGuidedAccessRestrictionDelegate for ProtocolObject<T>

Implementors§