objc2_ui_kit/
paste_configuration.rs

1use crate::UIPasteConfigurationSupporting;
2
3#[cfg(all(
4    feature = "UIResponder",
5    feature = "UIView",
6    feature = "UIControl",
7    feature = "UITextField",
8))]
9unsafe impl UIPasteConfigurationSupporting for crate::UITextField {}
10
11#[cfg(all(
12    feature = "UIResponder",
13    feature = "UIView",
14    feature = "UIScrollView",
15    feature = "UITextView",
16))]
17unsafe impl UIPasteConfigurationSupporting for crate::UITextView {}