Struct objc2_ui_kit::UIResponder
source · #[repr(C)]pub struct UIResponder { /* private fields */ }Available on crate feature
UIResponder only.Implementations§
source§impl UIResponder
impl UIResponder
pub unsafe fn nextResponder(&self) -> Option<Retained<UIResponder>>
pub unsafe fn canBecomeFirstResponder(&self) -> bool
pub unsafe fn becomeFirstResponder(&self) -> bool
pub unsafe fn canResignFirstResponder(&self) -> bool
pub unsafe fn resignFirstResponder(&self) -> bool
pub unsafe fn isFirstResponder(&self) -> bool
pub unsafe fn touchesBegan_withEvent( &self, touches: &NSSet<UITouch>, event: Option<&UIEvent> )
Available on crate features
UIEvent and UITouch only.pub unsafe fn touchesMoved_withEvent( &self, touches: &NSSet<UITouch>, event: Option<&UIEvent> )
Available on crate features
UIEvent and UITouch only.pub unsafe fn touchesEnded_withEvent( &self, touches: &NSSet<UITouch>, event: Option<&UIEvent> )
Available on crate features
UIEvent and UITouch only.pub unsafe fn touchesCancelled_withEvent( &self, touches: &NSSet<UITouch>, event: Option<&UIEvent> )
Available on crate features
UIEvent and UITouch only.pub unsafe fn touchesEstimatedPropertiesUpdated(&self, touches: &NSSet<UITouch>)
Available on crate feature
UITouch only.pub unsafe fn pressesBegan_withEvent( &self, presses: &NSSet<UIPress>, event: Option<&UIPressesEvent> )
Available on crate features
UIEvent and UIPress and UIPressesEvent only.pub unsafe fn pressesChanged_withEvent( &self, presses: &NSSet<UIPress>, event: Option<&UIPressesEvent> )
Available on crate features
UIEvent and UIPress and UIPressesEvent only.pub unsafe fn pressesEnded_withEvent( &self, presses: &NSSet<UIPress>, event: Option<&UIPressesEvent> )
Available on crate features
UIEvent and UIPress and UIPressesEvent only.pub unsafe fn pressesCancelled_withEvent( &self, presses: &NSSet<UIPress>, event: Option<&UIPressesEvent> )
Available on crate features
UIEvent and UIPress and UIPressesEvent only.pub unsafe fn motionBegan_withEvent( &self, motion: UIEventSubtype, event: Option<&UIEvent> )
Available on crate feature
UIEvent only.pub unsafe fn motionEnded_withEvent( &self, motion: UIEventSubtype, event: Option<&UIEvent> )
Available on crate feature
UIEvent only.pub unsafe fn motionCancelled_withEvent( &self, motion: UIEventSubtype, event: Option<&UIEvent> )
Available on crate feature
UIEvent only.pub unsafe fn remoteControlReceivedWithEvent(&self, event: Option<&UIEvent>)
Available on crate feature
UIEvent only.pub unsafe fn canPerformAction_withSender( &self, action: Sel, sender: Option<&AnyObject> ) -> bool
pub unsafe fn targetForAction_withSender( &self, action: Sel, sender: Option<&AnyObject> ) -> Option<Retained<AnyObject>>
pub unsafe fn buildMenuWithBuilder( &self, builder: &ProtocolObject<dyn UIMenuBuilder> )
Available on crate feature
UIMenuBuilder only.pub unsafe fn validateCommand(&self, command: &UICommand)
Available on crate features
UICommand and UIMenuElement only.pub unsafe fn undoManager(&self) -> Option<Retained<NSUndoManager>>
pub unsafe fn editingInteractionConfiguration( &self ) -> UIEditingInteractionConfiguration
source§impl UIResponder
impl UIResponder
Methods declared on superclass NSObject
source§impl UIResponder
impl UIResponder
UIResponderKeyCommands
pub unsafe fn keyCommands(&self) -> Option<Retained<NSArray<UIKeyCommand>>>
Available on crate features
UICommand and UIKeyCommand and UIMenuElement only.source§impl UIResponder
impl UIResponder
UIResponderInputViewAdditions
pub unsafe fn inputView(&self) -> Option<Retained<UIView>>
Available on crate feature
UIView only.pub unsafe fn inputAccessoryView(&self) -> Option<Retained<UIView>>
Available on crate feature
UIView only.pub unsafe fn inputAssistantItem(&self) -> Retained<UITextInputAssistantItem>
Available on crate feature
UITextInput only.pub unsafe fn inputViewController( &self ) -> Option<Retained<UIInputViewController>>
Available on crate features
UIInputViewController and UIViewController only.pub unsafe fn inputAccessoryViewController( &self ) -> Option<Retained<UIInputViewController>>
Available on crate features
UIInputViewController and UIViewController only.pub unsafe fn textInputMode(&self) -> Option<Retained<UITextInputMode>>
Available on crate feature
UITextInput only.pub unsafe fn textInputContextIdentifier(&self) -> Option<Retained<NSString>>
pub unsafe fn clearTextInputContextIdentifier( identifier: &NSString, mtm: MainThreadMarker )
pub unsafe fn reloadInputViews(&self)
source§impl UIResponder
impl UIResponder
ActivityContinuation
pub unsafe fn userActivity(&self) -> Option<Retained<NSUserActivity>>
pub unsafe fn setUserActivity(&self, user_activity: Option<&NSUserActivity>)
pub unsafe fn updateUserActivityState(&self, activity: &NSUserActivity)
pub unsafe fn restoreUserActivityState(&self, activity: &NSUserActivity)
impl UIResponder
This impl block contains no items.
UIPasteConfigurationSupporting
source§impl UIResponder
impl UIResponder
UICaptureTextFromCameraSupporting
pub unsafe fn captureTextFromCamera(&self, sender: Option<&AnyObject>)
source§impl UIResponder
impl UIResponder
UIActivityItemsConfiguration
pub unsafe fn activityItemsConfiguration( &self ) -> Option<Retained<ProtocolObject<dyn UIActivityItemsConfigurationReading>>>
Available on crate features
UIResponder_UIActivityItemsConfiguration and UIActivityItemsConfigurationReading only.pub unsafe fn setActivityItemsConfiguration( &self, activity_items_configuration: Option<&ProtocolObject<dyn UIActivityItemsConfigurationReading>> )
Available on crate features
UIResponder_UIActivityItemsConfiguration and UIActivityItemsConfigurationReading only.Methods from Deref<Target = NSObject>§
sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
sourcepub fn class(&self) -> &'static AnyClass
Available on crate feature UIIndirectScribbleInteraction only.
pub fn class(&self) -> &'static AnyClass
UIIndirectScribbleInteraction only.Dynamically find the class of this object.
§Example
Check that an instance of NSObject has the precise class NSObject.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load instead.Available on crate feature UIIndirectScribbleInteraction only.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load instead.UIIndirectScribbleInteraction only.Use Ivar::load instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T.
See Ivar::load_ptr for details surrounding this.
sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut instead.Available on crate feature UIIndirectScribbleInteraction only.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut instead.UIIndirectScribbleInteraction only.Use Ivar::load_mut instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T.
See Ivar::load_ptr for details surrounding this.
Trait Implementations§
source§impl AsMut<AnyObject> for UIResponder
impl AsMut<AnyObject> for UIResponder
source§impl AsMut<NSObject> for UIResponder
impl AsMut<NSObject> for UIResponder
source§impl AsMut<UIResponder> for UIAccessibilityElement
Available on crate feature UIAccessibilityElement only.
impl AsMut<UIResponder> for UIAccessibilityElement
Available on crate feature
UIAccessibilityElement only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIActionSheet
Available on crate feature UIActionSheet only.
impl AsMut<UIResponder> for UIActionSheet
Available on crate feature
UIActionSheet only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIActivityIndicatorView
Available on crate feature UIActivityIndicatorView only.
impl AsMut<UIResponder> for UIActivityIndicatorView
Available on crate feature
UIActivityIndicatorView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIActivityViewController
Available on crate feature UIActivityViewController only.
impl AsMut<UIResponder> for UIActivityViewController
Available on crate feature
UIActivityViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIAlertController
Available on crate feature UIAlertController only.
impl AsMut<UIResponder> for UIAlertController
Available on crate feature
UIAlertController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIAlertView
Available on crate feature UIAlertView only.
impl AsMut<UIResponder> for UIAlertView
Available on crate feature
UIAlertView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIApplication
Available on crate feature UIApplication only.
impl AsMut<UIResponder> for UIApplication
Available on crate feature
UIApplication only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIButton
Available on crate feature UIButton only.
impl AsMut<UIResponder> for UIButton
Available on crate feature
UIButton only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICalendarView
Available on crate feature UICalendarView only.
impl AsMut<UIResponder> for UICalendarView
Available on crate feature
UICalendarView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICloudSharingController
Available on crate feature UICloudSharingController only.
impl AsMut<UIResponder> for UICloudSharingController
Available on crate feature
UICloudSharingController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICollectionReusableView
Available on crate feature UICollectionViewCell only.
impl AsMut<UIResponder> for UICollectionReusableView
Available on crate feature
UICollectionViewCell only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICollectionView
Available on crate feature UICollectionView only.
impl AsMut<UIResponder> for UICollectionView
Available on crate feature
UICollectionView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICollectionViewCell
Available on crate feature UICollectionViewCell only.
impl AsMut<UIResponder> for UICollectionViewCell
Available on crate feature
UICollectionViewCell only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICollectionViewController
Available on crate feature UICollectionViewController only.
impl AsMut<UIResponder> for UICollectionViewController
Available on crate feature
UICollectionViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UICollectionViewListCell
Available on crate feature UICollectionViewListCell only.
impl AsMut<UIResponder> for UICollectionViewListCell
Available on crate feature
UICollectionViewListCell only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIColorPickerViewController
Available on crate feature UIColorPickerViewController only.
impl AsMut<UIResponder> for UIColorPickerViewController
Available on crate feature
UIColorPickerViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIColorWell
Available on crate feature UIColorWell only.
impl AsMut<UIResponder> for UIColorWell
Available on crate feature
UIColorWell only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIControl
Available on crate feature UIControl only.
impl AsMut<UIResponder> for UIControl
Available on crate feature
UIControl only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIDatePicker
Available on crate feature UIDatePicker only.
impl AsMut<UIResponder> for UIDatePicker
Available on crate feature
UIDatePicker only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIDocumentBrowserViewController
Available on crate feature UIDocumentBrowserViewController only.
impl AsMut<UIResponder> for UIDocumentBrowserViewController
Available on crate feature
UIDocumentBrowserViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIDocumentMenuViewController
Available on crate feature UIDocumentMenuViewController only.
impl AsMut<UIResponder> for UIDocumentMenuViewController
Available on crate feature
UIDocumentMenuViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature UIDocumentPickerExtensionViewController only.
impl AsMut<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature
UIDocumentPickerExtensionViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIDocumentPickerViewController
Available on crate feature UIDocumentPickerViewController only.
impl AsMut<UIResponder> for UIDocumentPickerViewController
Available on crate feature
UIDocumentPickerViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIDocumentViewController
Available on crate feature UIDocumentViewController only.
impl AsMut<UIResponder> for UIDocumentViewController
Available on crate feature
UIDocumentViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIEventAttributionView
Available on crate feature UIEventAttributionView only.
impl AsMut<UIResponder> for UIEventAttributionView
Available on crate feature
UIEventAttributionView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIFontPickerViewController
Available on crate feature UIFontPickerViewController only.
impl AsMut<UIResponder> for UIFontPickerViewController
Available on crate feature
UIFontPickerViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIImagePickerController
Available on crate feature UIImagePickerController only.
impl AsMut<UIResponder> for UIImagePickerController
Available on crate feature
UIImagePickerController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIImageView
Available on crate feature UIImageView only.
impl AsMut<UIResponder> for UIImageView
Available on crate feature
UIImageView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIInputView
Available on crate feature UIInputView only.
impl AsMut<UIResponder> for UIInputView
Available on crate feature
UIInputView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIInputViewController
Available on crate feature UIInputViewController only.
impl AsMut<UIResponder> for UIInputViewController
Available on crate feature
UIInputViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UILabel
Available on crate feature UILabel only.
impl AsMut<UIResponder> for UILabel
Available on crate feature
UILabel only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIListContentView
Available on crate feature UIListContentConfiguration only.
impl AsMut<UIResponder> for UIListContentView
Available on crate feature
UIListContentConfiguration only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIPageControl
Available on crate feature UIPageControl only.
impl AsMut<UIResponder> for UIPageControl
Available on crate feature
UIPageControl only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIPageViewController
Available on crate feature UIPageViewController only.
impl AsMut<UIResponder> for UIPageViewController
Available on crate feature
UIPageViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIPasteControl
Available on crate feature UIPasteControl only.
impl AsMut<UIResponder> for UIPasteControl
Available on crate feature
UIPasteControl only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIPickerView
Available on crate feature UIPickerView only.
impl AsMut<UIResponder> for UIPickerView
Available on crate feature
UIPickerView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIPopoverBackgroundView
Available on crate feature UIPopoverBackgroundView only.
impl AsMut<UIResponder> for UIPopoverBackgroundView
Available on crate feature
UIPopoverBackgroundView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIProgressView
Available on crate feature UIProgressView only.
impl AsMut<UIResponder> for UIProgressView
Available on crate feature
UIProgressView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIReferenceLibraryViewController
Available on crate feature UIReferenceLibraryViewController only.
impl AsMut<UIResponder> for UIReferenceLibraryViewController
Available on crate feature
UIReferenceLibraryViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIRefreshControl
Available on crate feature UIRefreshControl only.
impl AsMut<UIResponder> for UIRefreshControl
Available on crate feature
UIRefreshControl only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIResponder
impl AsMut<UIResponder> for UIResponder
source§impl AsMut<UIResponder> for UIScene
Available on crate feature UIScene only.
impl AsMut<UIResponder> for UIScene
Available on crate feature
UIScene only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIScrollView
Available on crate feature UIScrollView only.
impl AsMut<UIResponder> for UIScrollView
Available on crate feature
UIScrollView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISearchBar
Available on crate feature UISearchBar only.
impl AsMut<UIResponder> for UISearchBar
Available on crate feature
UISearchBar only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISearchContainerViewController
Available on crate feature UISearchContainerViewController only.
impl AsMut<UIResponder> for UISearchContainerViewController
Available on crate feature
UISearchContainerViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISearchController
Available on crate feature UISearchController only.
impl AsMut<UIResponder> for UISearchController
Available on crate feature
UISearchController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISearchTextField
Available on crate feature UISearchTextField only.
impl AsMut<UIResponder> for UISearchTextField
Available on crate feature
UISearchTextField only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISegmentedControl
Available on crate feature UISegmentedControl only.
impl AsMut<UIResponder> for UISegmentedControl
Available on crate feature
UISegmentedControl only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISlider
Available on crate feature UISlider only.
impl AsMut<UIResponder> for UISlider
Available on crate feature
UISlider only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISplitViewController
Available on crate feature UISplitViewController only.
impl AsMut<UIResponder> for UISplitViewController
Available on crate feature
UISplitViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIStackView
Available on crate feature UIStackView only.
impl AsMut<UIResponder> for UIStackView
Available on crate feature
UIStackView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIStandardTextCursorView
Available on crate feature UIStandardTextCursorView only.
impl AsMut<UIResponder> for UIStandardTextCursorView
Available on crate feature
UIStandardTextCursorView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIStepper
Available on crate feature UIStepper only.
impl AsMut<UIResponder> for UIStepper
Available on crate feature
UIStepper only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UISwitch
Available on crate feature UISwitch only.
impl AsMut<UIResponder> for UISwitch
Available on crate feature
UISwitch only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITabBar
Available on crate feature UITabBar only.
impl AsMut<UIResponder> for UITabBar
Available on crate feature
UITabBar only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITabBarController
Available on crate feature UITabBarController only.
impl AsMut<UIResponder> for UITabBarController
Available on crate feature
UITabBarController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITableView
Available on crate feature UITableView only.
impl AsMut<UIResponder> for UITableView
Available on crate feature
UITableView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITableViewCell
Available on crate feature UITableViewCell only.
impl AsMut<UIResponder> for UITableViewCell
Available on crate feature
UITableViewCell only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITableViewController
Available on crate feature UITableViewController only.
impl AsMut<UIResponder> for UITableViewController
Available on crate feature
UITableViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITextField
Available on crate feature UITextField only.
impl AsMut<UIResponder> for UITextField
Available on crate feature
UITextField only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UITextView
Available on crate feature UITextView only.
impl AsMut<UIResponder> for UITextView
Available on crate feature
UITextView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIToolbar
Available on crate feature UIToolbar only.
impl AsMut<UIResponder> for UIToolbar
Available on crate feature
UIToolbar only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIVideoEditorController
Available on crate feature UIVideoEditorController only.
impl AsMut<UIResponder> for UIVideoEditorController
Available on crate feature
UIVideoEditorController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIView
Available on crate feature UIView only.
impl AsMut<UIResponder> for UIView
Available on crate feature
UIView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIViewController
Available on crate feature UIViewController only.
impl AsMut<UIResponder> for UIViewController
Available on crate feature
UIViewController only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIVisualEffectView
Available on crate feature UIVisualEffectView only.
impl AsMut<UIResponder> for UIVisualEffectView
Available on crate feature
UIVisualEffectView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIWebView
Available on crate feature UIWebView only.
impl AsMut<UIResponder> for UIWebView
Available on crate feature
UIWebView only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIWindow
Available on crate feature UIWindow only.
impl AsMut<UIResponder> for UIWindow
Available on crate feature
UIWindow only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<UIResponder> for UIWindowScene
Available on crate feature UIWindowScene only.
impl AsMut<UIResponder> for UIWindowScene
Available on crate feature
UIWindowScene only.source§fn as_mut(&mut self) -> &mut UIResponder
fn as_mut(&mut self) -> &mut UIResponder
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsRef<AnyObject> for UIResponder
impl AsRef<AnyObject> for UIResponder
source§impl AsRef<NSObject> for UIResponder
impl AsRef<NSObject> for UIResponder
source§impl AsRef<UIResponder> for UIAccessibilityElement
Available on crate feature UIAccessibilityElement only.
impl AsRef<UIResponder> for UIAccessibilityElement
Available on crate feature
UIAccessibilityElement only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIActionSheet
Available on crate feature UIActionSheet only.
impl AsRef<UIResponder> for UIActionSheet
Available on crate feature
UIActionSheet only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIActivityIndicatorView
Available on crate feature UIActivityIndicatorView only.
impl AsRef<UIResponder> for UIActivityIndicatorView
Available on crate feature
UIActivityIndicatorView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIActivityViewController
Available on crate feature UIActivityViewController only.
impl AsRef<UIResponder> for UIActivityViewController
Available on crate feature
UIActivityViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIAlertController
Available on crate feature UIAlertController only.
impl AsRef<UIResponder> for UIAlertController
Available on crate feature
UIAlertController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIAlertView
Available on crate feature UIAlertView only.
impl AsRef<UIResponder> for UIAlertView
Available on crate feature
UIAlertView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIApplication
Available on crate feature UIApplication only.
impl AsRef<UIResponder> for UIApplication
Available on crate feature
UIApplication only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIButton
Available on crate feature UIButton only.
impl AsRef<UIResponder> for UIButton
Available on crate feature
UIButton only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICalendarView
Available on crate feature UICalendarView only.
impl AsRef<UIResponder> for UICalendarView
Available on crate feature
UICalendarView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICloudSharingController
Available on crate feature UICloudSharingController only.
impl AsRef<UIResponder> for UICloudSharingController
Available on crate feature
UICloudSharingController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICollectionReusableView
Available on crate feature UICollectionViewCell only.
impl AsRef<UIResponder> for UICollectionReusableView
Available on crate feature
UICollectionViewCell only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICollectionView
Available on crate feature UICollectionView only.
impl AsRef<UIResponder> for UICollectionView
Available on crate feature
UICollectionView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICollectionViewCell
Available on crate feature UICollectionViewCell only.
impl AsRef<UIResponder> for UICollectionViewCell
Available on crate feature
UICollectionViewCell only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICollectionViewController
Available on crate feature UICollectionViewController only.
impl AsRef<UIResponder> for UICollectionViewController
Available on crate feature
UICollectionViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UICollectionViewListCell
Available on crate feature UICollectionViewListCell only.
impl AsRef<UIResponder> for UICollectionViewListCell
Available on crate feature
UICollectionViewListCell only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIColorPickerViewController
Available on crate feature UIColorPickerViewController only.
impl AsRef<UIResponder> for UIColorPickerViewController
Available on crate feature
UIColorPickerViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIColorWell
Available on crate feature UIColorWell only.
impl AsRef<UIResponder> for UIColorWell
Available on crate feature
UIColorWell only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIControl
Available on crate feature UIControl only.
impl AsRef<UIResponder> for UIControl
Available on crate feature
UIControl only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIDatePicker
Available on crate feature UIDatePicker only.
impl AsRef<UIResponder> for UIDatePicker
Available on crate feature
UIDatePicker only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIDocumentBrowserViewController
Available on crate feature UIDocumentBrowserViewController only.
impl AsRef<UIResponder> for UIDocumentBrowserViewController
Available on crate feature
UIDocumentBrowserViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIDocumentMenuViewController
Available on crate feature UIDocumentMenuViewController only.
impl AsRef<UIResponder> for UIDocumentMenuViewController
Available on crate feature
UIDocumentMenuViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature UIDocumentPickerExtensionViewController only.
impl AsRef<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature
UIDocumentPickerExtensionViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIDocumentPickerViewController
Available on crate feature UIDocumentPickerViewController only.
impl AsRef<UIResponder> for UIDocumentPickerViewController
Available on crate feature
UIDocumentPickerViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIDocumentViewController
Available on crate feature UIDocumentViewController only.
impl AsRef<UIResponder> for UIDocumentViewController
Available on crate feature
UIDocumentViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIEventAttributionView
Available on crate feature UIEventAttributionView only.
impl AsRef<UIResponder> for UIEventAttributionView
Available on crate feature
UIEventAttributionView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIFontPickerViewController
Available on crate feature UIFontPickerViewController only.
impl AsRef<UIResponder> for UIFontPickerViewController
Available on crate feature
UIFontPickerViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIImagePickerController
Available on crate feature UIImagePickerController only.
impl AsRef<UIResponder> for UIImagePickerController
Available on crate feature
UIImagePickerController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIImageView
Available on crate feature UIImageView only.
impl AsRef<UIResponder> for UIImageView
Available on crate feature
UIImageView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIInputView
Available on crate feature UIInputView only.
impl AsRef<UIResponder> for UIInputView
Available on crate feature
UIInputView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIInputViewController
Available on crate feature UIInputViewController only.
impl AsRef<UIResponder> for UIInputViewController
Available on crate feature
UIInputViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UILabel
Available on crate feature UILabel only.
impl AsRef<UIResponder> for UILabel
Available on crate feature
UILabel only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIListContentView
Available on crate feature UIListContentConfiguration only.
impl AsRef<UIResponder> for UIListContentView
Available on crate feature
UIListContentConfiguration only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIPageControl
Available on crate feature UIPageControl only.
impl AsRef<UIResponder> for UIPageControl
Available on crate feature
UIPageControl only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIPageViewController
Available on crate feature UIPageViewController only.
impl AsRef<UIResponder> for UIPageViewController
Available on crate feature
UIPageViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIPasteControl
Available on crate feature UIPasteControl only.
impl AsRef<UIResponder> for UIPasteControl
Available on crate feature
UIPasteControl only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIPickerView
Available on crate feature UIPickerView only.
impl AsRef<UIResponder> for UIPickerView
Available on crate feature
UIPickerView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIPopoverBackgroundView
Available on crate feature UIPopoverBackgroundView only.
impl AsRef<UIResponder> for UIPopoverBackgroundView
Available on crate feature
UIPopoverBackgroundView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIProgressView
Available on crate feature UIProgressView only.
impl AsRef<UIResponder> for UIProgressView
Available on crate feature
UIProgressView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIReferenceLibraryViewController
Available on crate feature UIReferenceLibraryViewController only.
impl AsRef<UIResponder> for UIReferenceLibraryViewController
Available on crate feature
UIReferenceLibraryViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIRefreshControl
Available on crate feature UIRefreshControl only.
impl AsRef<UIResponder> for UIRefreshControl
Available on crate feature
UIRefreshControl only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIResponder
impl AsRef<UIResponder> for UIResponder
source§impl AsRef<UIResponder> for UIScene
Available on crate feature UIScene only.
impl AsRef<UIResponder> for UIScene
Available on crate feature
UIScene only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIScrollView
Available on crate feature UIScrollView only.
impl AsRef<UIResponder> for UIScrollView
Available on crate feature
UIScrollView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISearchBar
Available on crate feature UISearchBar only.
impl AsRef<UIResponder> for UISearchBar
Available on crate feature
UISearchBar only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISearchContainerViewController
Available on crate feature UISearchContainerViewController only.
impl AsRef<UIResponder> for UISearchContainerViewController
Available on crate feature
UISearchContainerViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISearchController
Available on crate feature UISearchController only.
impl AsRef<UIResponder> for UISearchController
Available on crate feature
UISearchController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISearchTextField
Available on crate feature UISearchTextField only.
impl AsRef<UIResponder> for UISearchTextField
Available on crate feature
UISearchTextField only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISegmentedControl
Available on crate feature UISegmentedControl only.
impl AsRef<UIResponder> for UISegmentedControl
Available on crate feature
UISegmentedControl only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISlider
Available on crate feature UISlider only.
impl AsRef<UIResponder> for UISlider
Available on crate feature
UISlider only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISplitViewController
Available on crate feature UISplitViewController only.
impl AsRef<UIResponder> for UISplitViewController
Available on crate feature
UISplitViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIStackView
Available on crate feature UIStackView only.
impl AsRef<UIResponder> for UIStackView
Available on crate feature
UIStackView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIStandardTextCursorView
Available on crate feature UIStandardTextCursorView only.
impl AsRef<UIResponder> for UIStandardTextCursorView
Available on crate feature
UIStandardTextCursorView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIStepper
Available on crate feature UIStepper only.
impl AsRef<UIResponder> for UIStepper
Available on crate feature
UIStepper only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UISwitch
Available on crate feature UISwitch only.
impl AsRef<UIResponder> for UISwitch
Available on crate feature
UISwitch only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITabBar
Available on crate feature UITabBar only.
impl AsRef<UIResponder> for UITabBar
Available on crate feature
UITabBar only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITabBarController
Available on crate feature UITabBarController only.
impl AsRef<UIResponder> for UITabBarController
Available on crate feature
UITabBarController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITableView
Available on crate feature UITableView only.
impl AsRef<UIResponder> for UITableView
Available on crate feature
UITableView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITableViewCell
Available on crate feature UITableViewCell only.
impl AsRef<UIResponder> for UITableViewCell
Available on crate feature
UITableViewCell only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITableViewController
Available on crate feature UITableViewController only.
impl AsRef<UIResponder> for UITableViewController
Available on crate feature
UITableViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITextField
Available on crate feature UITextField only.
impl AsRef<UIResponder> for UITextField
Available on crate feature
UITextField only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UITextView
Available on crate feature UITextView only.
impl AsRef<UIResponder> for UITextView
Available on crate feature
UITextView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIToolbar
Available on crate feature UIToolbar only.
impl AsRef<UIResponder> for UIToolbar
Available on crate feature
UIToolbar only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIVideoEditorController
Available on crate feature UIVideoEditorController only.
impl AsRef<UIResponder> for UIVideoEditorController
Available on crate feature
UIVideoEditorController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIView
Available on crate feature UIView only.
impl AsRef<UIResponder> for UIView
Available on crate feature
UIView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIViewController
Available on crate feature UIViewController only.
impl AsRef<UIResponder> for UIViewController
Available on crate feature
UIViewController only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIVisualEffectView
Available on crate feature UIVisualEffectView only.
impl AsRef<UIResponder> for UIVisualEffectView
Available on crate feature
UIVisualEffectView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIWebView
Available on crate feature UIWebView only.
impl AsRef<UIResponder> for UIWebView
Available on crate feature
UIWebView only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIWindow
Available on crate feature UIWindow only.
impl AsRef<UIResponder> for UIWindow
Available on crate feature
UIWindow only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<UIResponder> for UIWindowScene
Available on crate feature UIWindowScene only.
impl AsRef<UIResponder> for UIWindowScene
Available on crate feature
UIWindowScene only.source§fn as_ref(&self) -> &UIResponder
fn as_ref(&self) -> &UIResponder
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Borrow<AnyObject> for UIResponder
impl Borrow<AnyObject> for UIResponder
source§impl Borrow<NSObject> for UIResponder
impl Borrow<NSObject> for UIResponder
source§impl Borrow<UIResponder> for UIAccessibilityElement
Available on crate feature UIAccessibilityElement only.
impl Borrow<UIResponder> for UIAccessibilityElement
Available on crate feature
UIAccessibilityElement only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIActionSheet
Available on crate feature UIActionSheet only.
impl Borrow<UIResponder> for UIActionSheet
Available on crate feature
UIActionSheet only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIActivityIndicatorView
Available on crate feature UIActivityIndicatorView only.
impl Borrow<UIResponder> for UIActivityIndicatorView
Available on crate feature
UIActivityIndicatorView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIActivityViewController
Available on crate feature UIActivityViewController only.
impl Borrow<UIResponder> for UIActivityViewController
Available on crate feature
UIActivityViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIAlertController
Available on crate feature UIAlertController only.
impl Borrow<UIResponder> for UIAlertController
Available on crate feature
UIAlertController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIAlertView
Available on crate feature UIAlertView only.
impl Borrow<UIResponder> for UIAlertView
Available on crate feature
UIAlertView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIApplication
Available on crate feature UIApplication only.
impl Borrow<UIResponder> for UIApplication
Available on crate feature
UIApplication only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIButton
Available on crate feature UIButton only.
impl Borrow<UIResponder> for UIButton
Available on crate feature
UIButton only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICalendarView
Available on crate feature UICalendarView only.
impl Borrow<UIResponder> for UICalendarView
Available on crate feature
UICalendarView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICloudSharingController
Available on crate feature UICloudSharingController only.
impl Borrow<UIResponder> for UICloudSharingController
Available on crate feature
UICloudSharingController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICollectionReusableView
Available on crate feature UICollectionViewCell only.
impl Borrow<UIResponder> for UICollectionReusableView
Available on crate feature
UICollectionViewCell only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICollectionView
Available on crate feature UICollectionView only.
impl Borrow<UIResponder> for UICollectionView
Available on crate feature
UICollectionView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICollectionViewCell
Available on crate feature UICollectionViewCell only.
impl Borrow<UIResponder> for UICollectionViewCell
Available on crate feature
UICollectionViewCell only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICollectionViewController
Available on crate feature UICollectionViewController only.
impl Borrow<UIResponder> for UICollectionViewController
Available on crate feature
UICollectionViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UICollectionViewListCell
Available on crate feature UICollectionViewListCell only.
impl Borrow<UIResponder> for UICollectionViewListCell
Available on crate feature
UICollectionViewListCell only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIColorPickerViewController
Available on crate feature UIColorPickerViewController only.
impl Borrow<UIResponder> for UIColorPickerViewController
Available on crate feature
UIColorPickerViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIColorWell
Available on crate feature UIColorWell only.
impl Borrow<UIResponder> for UIColorWell
Available on crate feature
UIColorWell only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIControl
Available on crate feature UIControl only.
impl Borrow<UIResponder> for UIControl
Available on crate feature
UIControl only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIDatePicker
Available on crate feature UIDatePicker only.
impl Borrow<UIResponder> for UIDatePicker
Available on crate feature
UIDatePicker only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIDocumentBrowserViewController
Available on crate feature UIDocumentBrowserViewController only.
impl Borrow<UIResponder> for UIDocumentBrowserViewController
Available on crate feature
UIDocumentBrowserViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIDocumentMenuViewController
Available on crate feature UIDocumentMenuViewController only.
impl Borrow<UIResponder> for UIDocumentMenuViewController
Available on crate feature
UIDocumentMenuViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature UIDocumentPickerExtensionViewController only.
impl Borrow<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature
UIDocumentPickerExtensionViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIDocumentPickerViewController
Available on crate feature UIDocumentPickerViewController only.
impl Borrow<UIResponder> for UIDocumentPickerViewController
Available on crate feature
UIDocumentPickerViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIDocumentViewController
Available on crate feature UIDocumentViewController only.
impl Borrow<UIResponder> for UIDocumentViewController
Available on crate feature
UIDocumentViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIEventAttributionView
Available on crate feature UIEventAttributionView only.
impl Borrow<UIResponder> for UIEventAttributionView
Available on crate feature
UIEventAttributionView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIFontPickerViewController
Available on crate feature UIFontPickerViewController only.
impl Borrow<UIResponder> for UIFontPickerViewController
Available on crate feature
UIFontPickerViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIImagePickerController
Available on crate feature UIImagePickerController only.
impl Borrow<UIResponder> for UIImagePickerController
Available on crate feature
UIImagePickerController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIImageView
Available on crate feature UIImageView only.
impl Borrow<UIResponder> for UIImageView
Available on crate feature
UIImageView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIInputView
Available on crate feature UIInputView only.
impl Borrow<UIResponder> for UIInputView
Available on crate feature
UIInputView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIInputViewController
Available on crate feature UIInputViewController only.
impl Borrow<UIResponder> for UIInputViewController
Available on crate feature
UIInputViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UILabel
Available on crate feature UILabel only.
impl Borrow<UIResponder> for UILabel
Available on crate feature
UILabel only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIListContentView
Available on crate feature UIListContentConfiguration only.
impl Borrow<UIResponder> for UIListContentView
Available on crate feature
UIListContentConfiguration only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIPageControl
Available on crate feature UIPageControl only.
impl Borrow<UIResponder> for UIPageControl
Available on crate feature
UIPageControl only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIPageViewController
Available on crate feature UIPageViewController only.
impl Borrow<UIResponder> for UIPageViewController
Available on crate feature
UIPageViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIPasteControl
Available on crate feature UIPasteControl only.
impl Borrow<UIResponder> for UIPasteControl
Available on crate feature
UIPasteControl only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIPickerView
Available on crate feature UIPickerView only.
impl Borrow<UIResponder> for UIPickerView
Available on crate feature
UIPickerView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIPopoverBackgroundView
Available on crate feature UIPopoverBackgroundView only.
impl Borrow<UIResponder> for UIPopoverBackgroundView
Available on crate feature
UIPopoverBackgroundView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIProgressView
Available on crate feature UIProgressView only.
impl Borrow<UIResponder> for UIProgressView
Available on crate feature
UIProgressView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIReferenceLibraryViewController
Available on crate feature UIReferenceLibraryViewController only.
impl Borrow<UIResponder> for UIReferenceLibraryViewController
Available on crate feature
UIReferenceLibraryViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIRefreshControl
Available on crate feature UIRefreshControl only.
impl Borrow<UIResponder> for UIRefreshControl
Available on crate feature
UIRefreshControl only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIScene
Available on crate feature UIScene only.
impl Borrow<UIResponder> for UIScene
Available on crate feature
UIScene only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIScrollView
Available on crate feature UIScrollView only.
impl Borrow<UIResponder> for UIScrollView
Available on crate feature
UIScrollView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISearchBar
Available on crate feature UISearchBar only.
impl Borrow<UIResponder> for UISearchBar
Available on crate feature
UISearchBar only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISearchContainerViewController
Available on crate feature UISearchContainerViewController only.
impl Borrow<UIResponder> for UISearchContainerViewController
Available on crate feature
UISearchContainerViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISearchController
Available on crate feature UISearchController only.
impl Borrow<UIResponder> for UISearchController
Available on crate feature
UISearchController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISearchTextField
Available on crate feature UISearchTextField only.
impl Borrow<UIResponder> for UISearchTextField
Available on crate feature
UISearchTextField only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISegmentedControl
Available on crate feature UISegmentedControl only.
impl Borrow<UIResponder> for UISegmentedControl
Available on crate feature
UISegmentedControl only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISlider
Available on crate feature UISlider only.
impl Borrow<UIResponder> for UISlider
Available on crate feature
UISlider only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISplitViewController
Available on crate feature UISplitViewController only.
impl Borrow<UIResponder> for UISplitViewController
Available on crate feature
UISplitViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIStackView
Available on crate feature UIStackView only.
impl Borrow<UIResponder> for UIStackView
Available on crate feature
UIStackView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIStandardTextCursorView
Available on crate feature UIStandardTextCursorView only.
impl Borrow<UIResponder> for UIStandardTextCursorView
Available on crate feature
UIStandardTextCursorView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIStepper
Available on crate feature UIStepper only.
impl Borrow<UIResponder> for UIStepper
Available on crate feature
UIStepper only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UISwitch
Available on crate feature UISwitch only.
impl Borrow<UIResponder> for UISwitch
Available on crate feature
UISwitch only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITabBar
Available on crate feature UITabBar only.
impl Borrow<UIResponder> for UITabBar
Available on crate feature
UITabBar only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITabBarController
Available on crate feature UITabBarController only.
impl Borrow<UIResponder> for UITabBarController
Available on crate feature
UITabBarController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITableView
Available on crate feature UITableView only.
impl Borrow<UIResponder> for UITableView
Available on crate feature
UITableView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITableViewCell
Available on crate feature UITableViewCell only.
impl Borrow<UIResponder> for UITableViewCell
Available on crate feature
UITableViewCell only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITableViewController
Available on crate feature UITableViewController only.
impl Borrow<UIResponder> for UITableViewController
Available on crate feature
UITableViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITextField
Available on crate feature UITextField only.
impl Borrow<UIResponder> for UITextField
Available on crate feature
UITextField only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UITextView
Available on crate feature UITextView only.
impl Borrow<UIResponder> for UITextView
Available on crate feature
UITextView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIToolbar
Available on crate feature UIToolbar only.
impl Borrow<UIResponder> for UIToolbar
Available on crate feature
UIToolbar only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIVideoEditorController
Available on crate feature UIVideoEditorController only.
impl Borrow<UIResponder> for UIVideoEditorController
Available on crate feature
UIVideoEditorController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIView
Available on crate feature UIView only.
impl Borrow<UIResponder> for UIView
Available on crate feature
UIView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIViewController
Available on crate feature UIViewController only.
impl Borrow<UIResponder> for UIViewController
Available on crate feature
UIViewController only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIVisualEffectView
Available on crate feature UIVisualEffectView only.
impl Borrow<UIResponder> for UIVisualEffectView
Available on crate feature
UIVisualEffectView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIWebView
Available on crate feature UIWebView only.
impl Borrow<UIResponder> for UIWebView
Available on crate feature
UIWebView only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIWindow
Available on crate feature UIWindow only.
impl Borrow<UIResponder> for UIWindow
Available on crate feature
UIWindow only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl Borrow<UIResponder> for UIWindowScene
Available on crate feature UIWindowScene only.
impl Borrow<UIResponder> for UIWindowScene
Available on crate feature
UIWindowScene only.source§fn borrow(&self) -> &UIResponder
fn borrow(&self) -> &UIResponder
Immutably borrows from an owned value. Read more
source§impl BorrowMut<AnyObject> for UIResponder
impl BorrowMut<AnyObject> for UIResponder
source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<NSObject> for UIResponder
impl BorrowMut<NSObject> for UIResponder
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIAccessibilityElement
Available on crate feature UIAccessibilityElement only.
impl BorrowMut<UIResponder> for UIAccessibilityElement
Available on crate feature
UIAccessibilityElement only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIActionSheet
Available on crate feature UIActionSheet only.
impl BorrowMut<UIResponder> for UIActionSheet
Available on crate feature
UIActionSheet only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIActivityIndicatorView
Available on crate feature UIActivityIndicatorView only.
impl BorrowMut<UIResponder> for UIActivityIndicatorView
Available on crate feature
UIActivityIndicatorView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIActivityViewController
Available on crate feature UIActivityViewController only.
impl BorrowMut<UIResponder> for UIActivityViewController
Available on crate feature
UIActivityViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIAlertController
Available on crate feature UIAlertController only.
impl BorrowMut<UIResponder> for UIAlertController
Available on crate feature
UIAlertController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIAlertView
Available on crate feature UIAlertView only.
impl BorrowMut<UIResponder> for UIAlertView
Available on crate feature
UIAlertView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIApplication
Available on crate feature UIApplication only.
impl BorrowMut<UIResponder> for UIApplication
Available on crate feature
UIApplication only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIButton
Available on crate feature UIButton only.
impl BorrowMut<UIResponder> for UIButton
Available on crate feature
UIButton only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICalendarView
Available on crate feature UICalendarView only.
impl BorrowMut<UIResponder> for UICalendarView
Available on crate feature
UICalendarView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICloudSharingController
Available on crate feature UICloudSharingController only.
impl BorrowMut<UIResponder> for UICloudSharingController
Available on crate feature
UICloudSharingController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICollectionReusableView
Available on crate feature UICollectionViewCell only.
impl BorrowMut<UIResponder> for UICollectionReusableView
Available on crate feature
UICollectionViewCell only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICollectionView
Available on crate feature UICollectionView only.
impl BorrowMut<UIResponder> for UICollectionView
Available on crate feature
UICollectionView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICollectionViewCell
Available on crate feature UICollectionViewCell only.
impl BorrowMut<UIResponder> for UICollectionViewCell
Available on crate feature
UICollectionViewCell only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICollectionViewController
Available on crate feature UICollectionViewController only.
impl BorrowMut<UIResponder> for UICollectionViewController
Available on crate feature
UICollectionViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UICollectionViewListCell
Available on crate feature UICollectionViewListCell only.
impl BorrowMut<UIResponder> for UICollectionViewListCell
Available on crate feature
UICollectionViewListCell only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIColorPickerViewController
Available on crate feature UIColorPickerViewController only.
impl BorrowMut<UIResponder> for UIColorPickerViewController
Available on crate feature
UIColorPickerViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIColorWell
Available on crate feature UIColorWell only.
impl BorrowMut<UIResponder> for UIColorWell
Available on crate feature
UIColorWell only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIControl
Available on crate feature UIControl only.
impl BorrowMut<UIResponder> for UIControl
Available on crate feature
UIControl only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIDatePicker
Available on crate feature UIDatePicker only.
impl BorrowMut<UIResponder> for UIDatePicker
Available on crate feature
UIDatePicker only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIDocumentBrowserViewController
Available on crate feature UIDocumentBrowserViewController only.
impl BorrowMut<UIResponder> for UIDocumentBrowserViewController
Available on crate feature
UIDocumentBrowserViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIDocumentMenuViewController
Available on crate feature UIDocumentMenuViewController only.
impl BorrowMut<UIResponder> for UIDocumentMenuViewController
Available on crate feature
UIDocumentMenuViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature UIDocumentPickerExtensionViewController only.
impl BorrowMut<UIResponder> for UIDocumentPickerExtensionViewController
Available on crate feature
UIDocumentPickerExtensionViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIDocumentPickerViewController
Available on crate feature UIDocumentPickerViewController only.
impl BorrowMut<UIResponder> for UIDocumentPickerViewController
Available on crate feature
UIDocumentPickerViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIDocumentViewController
Available on crate feature UIDocumentViewController only.
impl BorrowMut<UIResponder> for UIDocumentViewController
Available on crate feature
UIDocumentViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIEventAttributionView
Available on crate feature UIEventAttributionView only.
impl BorrowMut<UIResponder> for UIEventAttributionView
Available on crate feature
UIEventAttributionView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIFontPickerViewController
Available on crate feature UIFontPickerViewController only.
impl BorrowMut<UIResponder> for UIFontPickerViewController
Available on crate feature
UIFontPickerViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIImagePickerController
Available on crate feature UIImagePickerController only.
impl BorrowMut<UIResponder> for UIImagePickerController
Available on crate feature
UIImagePickerController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIImageView
Available on crate feature UIImageView only.
impl BorrowMut<UIResponder> for UIImageView
Available on crate feature
UIImageView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIInputView
Available on crate feature UIInputView only.
impl BorrowMut<UIResponder> for UIInputView
Available on crate feature
UIInputView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIInputViewController
Available on crate feature UIInputViewController only.
impl BorrowMut<UIResponder> for UIInputViewController
Available on crate feature
UIInputViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UILabel
Available on crate feature UILabel only.
impl BorrowMut<UIResponder> for UILabel
Available on crate feature
UILabel only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIListContentView
Available on crate feature UIListContentConfiguration only.
impl BorrowMut<UIResponder> for UIListContentView
Available on crate feature
UIListContentConfiguration only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIPageControl
Available on crate feature UIPageControl only.
impl BorrowMut<UIResponder> for UIPageControl
Available on crate feature
UIPageControl only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIPageViewController
Available on crate feature UIPageViewController only.
impl BorrowMut<UIResponder> for UIPageViewController
Available on crate feature
UIPageViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIPasteControl
Available on crate feature UIPasteControl only.
impl BorrowMut<UIResponder> for UIPasteControl
Available on crate feature
UIPasteControl only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIPickerView
Available on crate feature UIPickerView only.
impl BorrowMut<UIResponder> for UIPickerView
Available on crate feature
UIPickerView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIPopoverBackgroundView
Available on crate feature UIPopoverBackgroundView only.
impl BorrowMut<UIResponder> for UIPopoverBackgroundView
Available on crate feature
UIPopoverBackgroundView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIProgressView
Available on crate feature UIProgressView only.
impl BorrowMut<UIResponder> for UIProgressView
Available on crate feature
UIProgressView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIReferenceLibraryViewController
Available on crate feature UIReferenceLibraryViewController only.
impl BorrowMut<UIResponder> for UIReferenceLibraryViewController
Available on crate feature
UIReferenceLibraryViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIRefreshControl
Available on crate feature UIRefreshControl only.
impl BorrowMut<UIResponder> for UIRefreshControl
Available on crate feature
UIRefreshControl only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIScene
Available on crate feature UIScene only.
impl BorrowMut<UIResponder> for UIScene
Available on crate feature
UIScene only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIScrollView
Available on crate feature UIScrollView only.
impl BorrowMut<UIResponder> for UIScrollView
Available on crate feature
UIScrollView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISearchBar
Available on crate feature UISearchBar only.
impl BorrowMut<UIResponder> for UISearchBar
Available on crate feature
UISearchBar only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISearchContainerViewController
Available on crate feature UISearchContainerViewController only.
impl BorrowMut<UIResponder> for UISearchContainerViewController
Available on crate feature
UISearchContainerViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISearchController
Available on crate feature UISearchController only.
impl BorrowMut<UIResponder> for UISearchController
Available on crate feature
UISearchController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISearchTextField
Available on crate feature UISearchTextField only.
impl BorrowMut<UIResponder> for UISearchTextField
Available on crate feature
UISearchTextField only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISegmentedControl
Available on crate feature UISegmentedControl only.
impl BorrowMut<UIResponder> for UISegmentedControl
Available on crate feature
UISegmentedControl only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISlider
Available on crate feature UISlider only.
impl BorrowMut<UIResponder> for UISlider
Available on crate feature
UISlider only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISplitViewController
Available on crate feature UISplitViewController only.
impl BorrowMut<UIResponder> for UISplitViewController
Available on crate feature
UISplitViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIStackView
Available on crate feature UIStackView only.
impl BorrowMut<UIResponder> for UIStackView
Available on crate feature
UIStackView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIStandardTextCursorView
Available on crate feature UIStandardTextCursorView only.
impl BorrowMut<UIResponder> for UIStandardTextCursorView
Available on crate feature
UIStandardTextCursorView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIStepper
Available on crate feature UIStepper only.
impl BorrowMut<UIResponder> for UIStepper
Available on crate feature
UIStepper only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UISwitch
Available on crate feature UISwitch only.
impl BorrowMut<UIResponder> for UISwitch
Available on crate feature
UISwitch only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITabBar
Available on crate feature UITabBar only.
impl BorrowMut<UIResponder> for UITabBar
Available on crate feature
UITabBar only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITabBarController
Available on crate feature UITabBarController only.
impl BorrowMut<UIResponder> for UITabBarController
Available on crate feature
UITabBarController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITableView
Available on crate feature UITableView only.
impl BorrowMut<UIResponder> for UITableView
Available on crate feature
UITableView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITableViewCell
Available on crate feature UITableViewCell only.
impl BorrowMut<UIResponder> for UITableViewCell
Available on crate feature
UITableViewCell only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITableViewController
Available on crate feature UITableViewController only.
impl BorrowMut<UIResponder> for UITableViewController
Available on crate feature
UITableViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITextField
Available on crate feature UITextField only.
impl BorrowMut<UIResponder> for UITextField
Available on crate feature
UITextField only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UITextView
Available on crate feature UITextView only.
impl BorrowMut<UIResponder> for UITextView
Available on crate feature
UITextView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIToolbar
Available on crate feature UIToolbar only.
impl BorrowMut<UIResponder> for UIToolbar
Available on crate feature
UIToolbar only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIVideoEditorController
Available on crate feature UIVideoEditorController only.
impl BorrowMut<UIResponder> for UIVideoEditorController
Available on crate feature
UIVideoEditorController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIView
Available on crate feature UIView only.
impl BorrowMut<UIResponder> for UIView
Available on crate feature
UIView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIViewController
Available on crate feature UIViewController only.
impl BorrowMut<UIResponder> for UIViewController
Available on crate feature
UIViewController only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIVisualEffectView
Available on crate feature UIVisualEffectView only.
impl BorrowMut<UIResponder> for UIVisualEffectView
Available on crate feature
UIVisualEffectView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIWebView
Available on crate feature UIWebView only.
impl BorrowMut<UIResponder> for UIWebView
Available on crate feature
UIWebView only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIWindow
Available on crate feature UIWindow only.
impl BorrowMut<UIResponder> for UIWindow
Available on crate feature
UIWindow only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl BorrowMut<UIResponder> for UIWindowScene
Available on crate feature UIWindowScene only.
impl BorrowMut<UIResponder> for UIWindowScene
Available on crate feature
UIWindowScene only.source§fn borrow_mut(&mut self) -> &mut UIResponder
fn borrow_mut(&mut self) -> &mut UIResponder
Mutably borrows from an owned value. Read more
source§impl ClassType for UIResponder
impl ClassType for UIResponder
§type Mutability = MainThreadOnly
type Mutability = MainThreadOnly
Whether the type is mutable or immutable. Read more
source§const NAME: &'static str = "UIResponder"
const NAME: &'static str = "UIResponder"
The name of the Objective-C class that this type represents. Read more
source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
Get a reference to the Objective-C class that this type represents. Read more
source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
Get a mutable reference to the superclass.
source§impl Debug for UIResponder
impl Debug for UIResponder
source§impl Deref for UIResponder
impl Deref for UIResponder
source§impl DerefMut for UIResponder
impl DerefMut for UIResponder
source§impl Hash for UIResponder
impl Hash for UIResponder
source§impl NSObjectProtocol for UIResponder
impl NSObjectProtocol for UIResponder
source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
Check whether the object is equal to an arbitrary other object. Read more
source§fn hash(&self) -> usize
fn hash(&self) -> usize
An integer that can be used as a table address in a hash table
structure. Read more
source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of the class, or one of its
subclasses. Read more
source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
Check if the object is an instance of the class type, or one of its
subclasses. Read more
source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of a specific class, without
checking subclasses. Read more
source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
Check whether the object implements or inherits a method with the
given selector. Read more
source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
Check whether the object conforms to a given protocol. Read more
source§fn debugDescription(&self) -> Retained<NSObject>
fn debugDescription(&self) -> Retained<NSObject>
A textual representation of the object to use when debugging. Read more
source§impl PartialEq for UIResponder
impl PartialEq for UIResponder
source§fn eq(&self, other: &UIResponder) -> bool
fn eq(&self, other: &UIResponder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RefEncode for UIResponder
impl RefEncode for UIResponder
source§const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF
The Objective-C type-encoding for a reference of this type. Read more
source§impl UIActivityItemsConfigurationProviding for UIResponder
Available on crate features UIActivityItemsConfigurationReading and UIResponder_UIActivityItemsConfiguration only.
impl UIActivityItemsConfigurationProviding for UIResponder
Available on crate features
UIActivityItemsConfigurationReading and UIResponder_UIActivityItemsConfiguration only.unsafe fn activityItemsConfiguration( &self, mtm: MainThreadMarker ) -> Option<Retained<ProtocolObject<dyn UIActivityItemsConfigurationReading>>>
source§impl UIPasteConfigurationSupporting for UIResponder
Available on crate feature UIPasteConfigurationSupporting only.
impl UIPasteConfigurationSupporting for UIResponder
Available on crate feature
UIPasteConfigurationSupporting only.source§unsafe fn pasteConfiguration(&self) -> Option<Retained<UIPasteConfiguration>>
unsafe fn pasteConfiguration(&self) -> Option<Retained<UIPasteConfiguration>>
Available on crate feature
UIPasteConfiguration only.source§unsafe fn setPasteConfiguration(
&self,
paste_configuration: Option<&UIPasteConfiguration>
)
unsafe fn setPasteConfiguration( &self, paste_configuration: Option<&UIPasteConfiguration> )
Available on crate feature
UIPasteConfiguration only.unsafe fn pasteItemProviders(&self, item_providers: &NSArray<NSItemProvider>)
unsafe fn canPasteItemProviders( &self, item_providers: &NSArray<NSItemProvider> ) -> bool
source§impl UIResponderStandardEditActions for UIResponder
impl UIResponderStandardEditActions for UIResponder
unsafe fn cut(&self, sender: Option<&AnyObject>)
unsafe fn copy(&self, sender: Option<&AnyObject>)
unsafe fn paste(&self, sender: Option<&AnyObject>)
unsafe fn pasteAndMatchStyle(&self, sender: Option<&AnyObject>)
unsafe fn pasteAndGo(&self, sender: Option<&AnyObject>)
unsafe fn pasteAndSearch(&self, sender: Option<&AnyObject>)
unsafe fn select(&self, sender: Option<&AnyObject>)
unsafe fn selectAll(&self, sender: Option<&AnyObject>)
unsafe fn delete(&self, sender: Option<&AnyObject>)
unsafe fn makeTextWritingDirectionLeftToRight(&self, sender: Option<&AnyObject>)
unsafe fn makeTextWritingDirectionRightToLeft(&self, sender: Option<&AnyObject>)
unsafe fn toggleBoldface(&self, sender: Option<&AnyObject>)
unsafe fn toggleItalics(&self, sender: Option<&AnyObject>)
unsafe fn toggleUnderline(&self, sender: Option<&AnyObject>)
unsafe fn increaseSize(&self, sender: Option<&AnyObject>)
unsafe fn decreaseSize(&self, sender: Option<&AnyObject>)
unsafe fn find(&self, sender: Option<&AnyObject>)
unsafe fn findAndReplace(&self, sender: Option<&AnyObject>)
unsafe fn findNext(&self, sender: Option<&AnyObject>)
unsafe fn findPrevious(&self, sender: Option<&AnyObject>)
unsafe fn useSelectionForFind(&self, sender: Option<&AnyObject>)
source§unsafe fn updateTextAttributesWithConversionHandler(
&self,
conversion_handler: UITextAttributesConversionHandler
)
unsafe fn updateTextAttributesWithConversionHandler( &self, conversion_handler: UITextAttributesConversionHandler )
Available on crate feature
block2 only.unsafe fn print(&self, sender: Option<&AnyObject>)
unsafe fn rename(&self, sender: Option<&AnyObject>)
unsafe fn duplicate(&self, sender: Option<&AnyObject>)
unsafe fn move(&self, sender: Option<&AnyObject>)
unsafe fn export(&self, sender: Option<&AnyObject>)
source§impl UIUserActivityRestoring for UIResponder
Available on crate feature UIUserActivity only.
impl UIUserActivityRestoring for UIResponder
Available on crate feature
UIUserActivity only.unsafe fn restoreUserActivityState(&self, user_activity: &NSUserActivity)
impl Eq for UIResponder
impl Message for UIResponder
impl StructuralPartialEq for UIResponder
Auto Trait Implementations§
impl !Freeze for UIResponder
impl !RefUnwindSafe for UIResponder
impl !Send for UIResponder
impl !Sync for UIResponder
impl !Unpin for UIResponder
impl !UnwindSafe for UIResponder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CounterpartOrSelf for T
impl<T> CounterpartOrSelf for T
§type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
The immutable counterpart of the type, or
Self if the type has no
immutable counterpart. Read more§type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
The mutable counterpart of the type, or
Self if the type has no
mutable counterpart. Read more