Trait objc2_ui_kit::UITextInputTokenizer

source ·
pub unsafe trait UITextInputTokenizer: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn rangeEnclosingPosition_withGranularity_inDirection(
        &self,
        position: &UITextPosition,
        granularity: UITextGranularity,
        direction: UITextDirection
    ) -> Option<Retained<UITextRange>>
       where Self: Sized + Message { ... }
    unsafe fn isPosition_atBoundary_inDirection(
        &self,
        position: &UITextPosition,
        granularity: UITextGranularity,
        direction: UITextDirection
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn positionFromPosition_toBoundary_inDirection(
        &self,
        position: &UITextPosition,
        granularity: UITextGranularity,
        direction: UITextDirection
    ) -> Option<Retained<UITextPosition>>
       where Self: Sized + Message { ... }
    unsafe fn isPosition_withinTextUnit_inDirection(
        &self,
        position: &UITextPosition,
        granularity: UITextGranularity,
        direction: UITextDirection
    ) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature UITextInput only.

Provided Methods§

source

unsafe fn rangeEnclosingPosition_withGranularity_inDirection( &self, position: &UITextPosition, granularity: UITextGranularity, direction: UITextDirection ) -> Option<Retained<UITextRange>>
where Self: Sized + Message,

source

unsafe fn isPosition_atBoundary_inDirection( &self, position: &UITextPosition, granularity: UITextGranularity, direction: UITextDirection ) -> bool
where Self: Sized + Message,

source

unsafe fn positionFromPosition_toBoundary_inDirection( &self, position: &UITextPosition, granularity: UITextGranularity, direction: UITextDirection ) -> Option<Retained<UITextPosition>>
where Self: Sized + Message,

source

unsafe fn isPosition_withinTextUnit_inDirection( &self, position: &UITextPosition, granularity: UITextGranularity, direction: UITextDirection ) -> bool
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UITextInputTokenizer

source§

const NAME: &'static str = "UITextInputTokenizer"

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 UITextInputTokenizer

Implementations on Foreign Types§

source§

impl<T> UITextInputTokenizer for ProtocolObject<T>

Implementors§