pub unsafe trait BETextInteractionDelegate {
// Provided methods
unsafe fn systemWillChangeSelectionForInteraction(
&self,
text_interaction: &BETextInteraction,
)
where Self: Sized + Message { ... }
unsafe fn systemDidChangeSelectionForInteraction(
&self,
text_interaction: &BETextInteraction,
)
where Self: Sized + Message { ... }
}Available on crate feature
BETextInteractionDelegate only.Expand description
Provided Methods§
Sourceunsafe fn systemWillChangeSelectionForInteraction(
&self,
text_interaction: &BETextInteraction,
)
Available on crate feature BETextInteraction only.
unsafe fn systemWillChangeSelectionForInteraction( &self, text_interaction: &BETextInteraction, )
BETextInteraction only.Invoked by the system when the selection is about to change in the document.
Sourceunsafe fn systemDidChangeSelectionForInteraction(
&self,
text_interaction: &BETextInteraction,
)
Available on crate feature BETextInteraction only.
unsafe fn systemDidChangeSelectionForInteraction( &self, text_interaction: &BETextInteraction, )
BETextInteraction only.Invoked by the system when the selection is about to change in the document.
Trait Implementations§
impl<T> ImplementedBy<T> for dyn BETextInteractionDelegate
Source§impl ProtocolType for dyn BETextInteractionDelegate
impl ProtocolType for dyn BETextInteractionDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".