objc2_browser_engine_kit/generated/
BETextInteractionDelegate.rs1use core::ffi::*;
4use core::ptr::NonNull;
5use objc2::__framework_prelude::*;
6
7use crate::*;
8
9extern_protocol!(
10 pub unsafe trait BETextInteractionDelegate {
12 #[cfg(feature = "BETextInteraction")]
13 #[unsafe(method(systemWillChangeSelectionForInteraction:))]
15 #[unsafe(method_family = none)]
16 unsafe fn systemWillChangeSelectionForInteraction(
17 &self,
18 text_interaction: &BETextInteraction,
19 );
20
21 #[cfg(feature = "BETextInteraction")]
22 #[unsafe(method(systemDidChangeSelectionForInteraction:))]
24 #[unsafe(method_family = none)]
25 unsafe fn systemDidChangeSelectionForInteraction(
26 &self,
27 text_interaction: &BETextInteraction,
28 );
29 }
30);