pub unsafe trait UITextInteractionDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn interactionShouldBegin_atPoint(
&self,
interaction: &UITextInteraction,
point: CGPoint,
) -> bool
where Self: Sized + Message { ... }
fn interactionWillBegin(&self, interaction: &UITextInteraction)
where Self: Sized + Message { ... }
fn interactionDidEnd(&self, interaction: &UITextInteraction)
where Self: Sized + Message { ... }
}Available on crate feature
UITextInteraction only.Expand description
Provided Methods§
fn interactionShouldBegin_atPoint( &self, interaction: &UITextInteraction, point: CGPoint, ) -> bool
Available on crate feature
objc2-core-foundation only.fn interactionWillBegin(&self, interaction: &UITextInteraction)
fn interactionDidEnd(&self, interaction: &UITextInteraction)
Trait Implementations§
Source§impl ProtocolType for dyn UITextInteractionDelegate
impl ProtocolType for dyn UITextInteractionDelegate
impl<T> ImplementedBy<T> for dyn UITextInteractionDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".