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