pub struct INIntentResponse { /* private fields */ }
INIntentResponse
only.Expand description
Implementations§
Source§impl INIntentResponse
impl INIntentResponse
pub unsafe fn userActivity(&self) -> Option<Retained<NSUserActivity>>
Sourcepub unsafe fn setUserActivity(&self, user_activity: Option<&NSUserActivity>)
pub unsafe fn setUserActivity(&self, user_activity: Option<&NSUserActivity>)
Setter for userActivity
.
This is copied when set.
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
pub fn class(&self) -> &'static AnyClass
Dynamically find the class of this object.
§Panics
May panic if the object is invalid (which may be the case for objects
returned from unavailable init
/new
methods).
§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.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load
instead.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 fn downcast_ref<T>(&self) -> Option<&T>where
T: DowncastTarget,
pub fn downcast_ref<T>(&self) -> Option<&T>where
T: DowncastTarget,
Attempt to downcast the object to a class of type T
.
This is the reference-variant. Use Retained::downcast
if you want
to convert a retained object to another type.
§Mutable classes
Some classes have immutable and mutable variants, such as NSString
and NSMutableString
.
When some Objective-C API signature says it gives you an immutable class, it generally expects you to not mutate that, even though it may technically be mutable “under the hood”.
So using this method to convert a NSString
to a NSMutableString
,
while not unsound, is generally frowned upon unless you created the
string yourself, or the API explicitly documents the string to be
mutable.
See Apple’s documentation on mutability and on
isKindOfClass:
for more details.
§Generic classes
Objective-C generics are called “lightweight generics”, and that’s because they aren’t exposed in the runtime. This makes it impossible to safely downcast to generic collections, so this is disallowed by this method.
You can, however, safely downcast to generic collections where all the
type-parameters are AnyObject
.
§Panics
This works internally by calling isKindOfClass:
. That means that the
object must have the instance method of that name, and an exception
will be thrown (if CoreFoundation is linked) or the process will abort
if that is not the case. In the vast majority of cases, you don’t need
to worry about this, since both root objects NSObject
and
NSProxy
implement this method.
§Examples
Cast an NSString
back and forth from NSObject
.
use objc2::rc::Retained;
use objc2_foundation::{NSObject, NSString};
let obj: Retained<NSObject> = NSString::new().into_super();
let string = obj.downcast_ref::<NSString>().unwrap();
// Or with `downcast`, if we do not need the object afterwards
let string = obj.downcast::<NSString>().unwrap();
Try (and fail) to cast an NSObject
to an NSString
.
use objc2_foundation::{NSObject, NSString};
let obj = NSObject::new();
assert!(obj.downcast_ref::<NSString>().is_none());
Try to cast to an array of strings.
use objc2_foundation::{NSArray, NSObject, NSString};
let arr = NSArray::from_retained_slice(&[NSObject::new()]);
// This is invalid and doesn't type check.
let arr = arr.downcast_ref::<NSArray<NSString>>();
This fails to compile, since it would require enumerating over the array to ensure that each element is of the desired type, which is a performance pitfall.
Downcast when processing each element instead.
use objc2_foundation::{NSArray, NSObject, NSString};
let arr = NSArray::from_retained_slice(&[NSObject::new()]);
for elem in arr {
if let Some(data) = elem.downcast_ref::<NSString>() {
// handle `data`
}
}
Trait Implementations§
Source§impl AsRef<AnyObject> for INIntentResponse
impl AsRef<AnyObject> for INIntentResponse
Source§impl AsRef<INIntentResponse> for INActivateCarSignalIntentResponse
Available on crate feature INActivateCarSignalIntentResponse
only.
impl AsRef<INIntentResponse> for INActivateCarSignalIntentResponse
INActivateCarSignalIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INAddMediaIntentResponse
Available on crate feature INAddMediaIntentResponse
only.
impl AsRef<INIntentResponse> for INAddMediaIntentResponse
INAddMediaIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INAddTasksIntentResponse
Available on crate feature INAddTasksIntentResponse
only.
impl AsRef<INIntentResponse> for INAddTasksIntentResponse
INAddTasksIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INAnswerCallIntentResponse
Available on crate feature INAnswerCallIntentResponse
only.
impl AsRef<INIntentResponse> for INAnswerCallIntentResponse
INAnswerCallIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INAppendToNoteIntentResponse
Available on crate feature INAppendToNoteIntentResponse
only.
impl AsRef<INIntentResponse> for INAppendToNoteIntentResponse
INAppendToNoteIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INBookRestaurantReservationIntentResponse
Available on crate feature INBookRestaurantReservationIntentResponse
only.
impl AsRef<INIntentResponse> for INBookRestaurantReservationIntentResponse
INBookRestaurantReservationIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INCancelRideIntentResponse
Available on crate feature INCancelRideIntentResponse
only.
impl AsRef<INIntentResponse> for INCancelRideIntentResponse
INCancelRideIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INCancelWorkoutIntentResponse
Available on crate feature INCancelWorkoutIntentResponse
only.
impl AsRef<INIntentResponse> for INCancelWorkoutIntentResponse
INCancelWorkoutIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INCreateNoteIntentResponse
Available on crate feature INCreateNoteIntentResponse
only.
impl AsRef<INIntentResponse> for INCreateNoteIntentResponse
INCreateNoteIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INCreateTaskListIntentResponse
Available on crate feature INCreateTaskListIntentResponse
only.
impl AsRef<INIntentResponse> for INCreateTaskListIntentResponse
INCreateTaskListIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INDeleteTasksIntentResponse
Available on crate feature INDeleteTasksIntentResponse
only.
impl AsRef<INIntentResponse> for INDeleteTasksIntentResponse
INDeleteTasksIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INEditMessageIntentResponse
Available on crate feature INEditMessageIntentResponse
only.
impl AsRef<INIntentResponse> for INEditMessageIntentResponse
INEditMessageIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INEndWorkoutIntentResponse
Available on crate feature INEndWorkoutIntentResponse
only.
impl AsRef<INIntentResponse> for INEndWorkoutIntentResponse
INEndWorkoutIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
Available on crate feature INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
only.
impl AsRef<INIntentResponse> for INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetAvailableRestaurantReservationBookingsIntentResponse
Available on crate feature INGetAvailableRestaurantReservationBookingsIntentResponse
only.
impl AsRef<INIntentResponse> for INGetAvailableRestaurantReservationBookingsIntentResponse
INGetAvailableRestaurantReservationBookingsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetCarLockStatusIntentResponse
Available on crate feature INGetCarLockStatusIntentResponse
only.
impl AsRef<INIntentResponse> for INGetCarLockStatusIntentResponse
INGetCarLockStatusIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetCarPowerLevelStatusIntentResponse
Available on crate feature INGetCarPowerLevelStatusIntentResponse
only.
impl AsRef<INIntentResponse> for INGetCarPowerLevelStatusIntentResponse
INGetCarPowerLevelStatusIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetReservationDetailsIntentResponse
Available on crate feature INGetReservationDetailsIntentResponse
only.
impl AsRef<INIntentResponse> for INGetReservationDetailsIntentResponse
INGetReservationDetailsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetRestaurantGuestIntentResponse
Available on crate feature INGetRestaurantGuestIntentResponse
only.
impl AsRef<INIntentResponse> for INGetRestaurantGuestIntentResponse
INGetRestaurantGuestIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetRideStatusIntentResponse
Available on crate feature INGetRideStatusIntentResponse
only.
impl AsRef<INIntentResponse> for INGetRideStatusIntentResponse
INGetRideStatusIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetUserCurrentRestaurantReservationBookingsIntentResponse
Available on crate feature INGetUserCurrentRestaurantReservationBookingsIntentResponse
only.
impl AsRef<INIntentResponse> for INGetUserCurrentRestaurantReservationBookingsIntentResponse
INGetUserCurrentRestaurantReservationBookingsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INGetVisualCodeIntentResponse
Available on crate feature INGetVisualCodeIntentResponse
only.
impl AsRef<INIntentResponse> for INGetVisualCodeIntentResponse
INGetVisualCodeIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INHangUpCallIntentResponse
Available on crate feature INHangUpCallIntentResponse
only.
impl AsRef<INIntentResponse> for INHangUpCallIntentResponse
INHangUpCallIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INIntentResponse
impl AsRef<INIntentResponse> for INIntentResponse
Source§impl AsRef<INIntentResponse> for INListCarsIntentResponse
Available on crate feature INListCarsIntentResponse
only.
impl AsRef<INIntentResponse> for INListCarsIntentResponse
INListCarsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INListRideOptionsIntentResponse
Available on crate feature INListRideOptionsIntentResponse
only.
impl AsRef<INIntentResponse> for INListRideOptionsIntentResponse
INListRideOptionsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INPauseWorkoutIntentResponse
Available on crate feature INPauseWorkoutIntentResponse
only.
impl AsRef<INIntentResponse> for INPauseWorkoutIntentResponse
INPauseWorkoutIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INPayBillIntentResponse
Available on crate feature INPayBillIntentResponse
only.
impl AsRef<INIntentResponse> for INPayBillIntentResponse
INPayBillIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INPlayMediaIntentResponse
Available on crate feature INPlayMediaIntentResponse
only.
impl AsRef<INIntentResponse> for INPlayMediaIntentResponse
INPlayMediaIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INRequestPaymentIntentResponse
Available on crate feature INRequestPaymentIntentResponse
only.
impl AsRef<INIntentResponse> for INRequestPaymentIntentResponse
INRequestPaymentIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INRequestRideIntentResponse
Available on crate feature INRequestRideIntentResponse
only.
impl AsRef<INIntentResponse> for INRequestRideIntentResponse
INRequestRideIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INResumeWorkoutIntentResponse
Available on crate feature INResumeWorkoutIntentResponse
only.
impl AsRef<INIntentResponse> for INResumeWorkoutIntentResponse
INResumeWorkoutIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSaveProfileInCarIntentResponse
Available on crate feature INSaveProfileInCarIntentResponse
only.
impl AsRef<INIntentResponse> for INSaveProfileInCarIntentResponse
INSaveProfileInCarIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchCallHistoryIntentResponse
Available on crate feature INSearchCallHistoryIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchCallHistoryIntentResponse
INSearchCallHistoryIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchForAccountsIntentResponse
Available on crate feature INSearchForAccountsIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchForAccountsIntentResponse
INSearchForAccountsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchForBillsIntentResponse
Available on crate feature INSearchForBillsIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchForBillsIntentResponse
INSearchForBillsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchForMediaIntentResponse
Available on crate feature INSearchForMediaIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchForMediaIntentResponse
INSearchForMediaIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchForMessagesIntentResponse
Available on crate feature INSearchForMessagesIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchForMessagesIntentResponse
INSearchForMessagesIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchForNotebookItemsIntentResponse
Available on crate feature INSearchForNotebookItemsIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchForNotebookItemsIntentResponse
INSearchForNotebookItemsIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSearchForPhotosIntentResponse
Available on crate feature INSearchForPhotosIntentResponse
only.
impl AsRef<INIntentResponse> for INSearchForPhotosIntentResponse
INSearchForPhotosIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSendMessageIntentResponse
Available on crate feature INSendMessageIntentResponse
only.
impl AsRef<INIntentResponse> for INSendMessageIntentResponse
INSendMessageIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSendPaymentIntentResponse
Available on crate feature INSendPaymentIntentResponse
only.
impl AsRef<INIntentResponse> for INSendPaymentIntentResponse
INSendPaymentIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSendRideFeedbackIntentResponse
Available on crate feature INSendRideFeedbackIntentResponse
only.
impl AsRef<INIntentResponse> for INSendRideFeedbackIntentResponse
INSendRideFeedbackIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetAudioSourceInCarIntentResponse
Available on crate feature INSetAudioSourceInCarIntentResponse
only.
impl AsRef<INIntentResponse> for INSetAudioSourceInCarIntentResponse
INSetAudioSourceInCarIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetCarLockStatusIntentResponse
Available on crate feature INSetCarLockStatusIntentResponse
only.
impl AsRef<INIntentResponse> for INSetCarLockStatusIntentResponse
INSetCarLockStatusIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetClimateSettingsInCarIntentResponse
Available on crate feature INSetClimateSettingsInCarIntentResponse
only.
impl AsRef<INIntentResponse> for INSetClimateSettingsInCarIntentResponse
INSetClimateSettingsInCarIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetDefrosterSettingsInCarIntentResponse
Available on crate feature INSetDefrosterSettingsInCarIntentResponse
only.
impl AsRef<INIntentResponse> for INSetDefrosterSettingsInCarIntentResponse
INSetDefrosterSettingsInCarIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetMessageAttributeIntentResponse
Available on crate feature INSetMessageAttributeIntentResponse
only.
impl AsRef<INIntentResponse> for INSetMessageAttributeIntentResponse
INSetMessageAttributeIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetProfileInCarIntentResponse
Available on crate feature INSetProfileInCarIntentResponse
only.
impl AsRef<INIntentResponse> for INSetProfileInCarIntentResponse
INSetProfileInCarIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetRadioStationIntentResponse
Available on crate feature INSetRadioStationIntentResponse
only.
impl AsRef<INIntentResponse> for INSetRadioStationIntentResponse
INSetRadioStationIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetSeatSettingsInCarIntentResponse
Available on crate feature INSetSeatSettingsInCarIntentResponse
only.
impl AsRef<INIntentResponse> for INSetSeatSettingsInCarIntentResponse
INSetSeatSettingsInCarIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSetTaskAttributeIntentResponse
Available on crate feature INSetTaskAttributeIntentResponse
only.
impl AsRef<INIntentResponse> for INSetTaskAttributeIntentResponse
INSetTaskAttributeIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INSnoozeTasksIntentResponse
Available on crate feature INSnoozeTasksIntentResponse
only.
impl AsRef<INIntentResponse> for INSnoozeTasksIntentResponse
INSnoozeTasksIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INStartAudioCallIntentResponse
Available on crate feature INStartAudioCallIntentResponse
only.
impl AsRef<INIntentResponse> for INStartAudioCallIntentResponse
INStartAudioCallIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INStartCallIntentResponse
Available on crate feature INStartCallIntentResponse
only.
impl AsRef<INIntentResponse> for INStartCallIntentResponse
INStartCallIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INStartPhotoPlaybackIntentResponse
Available on crate feature INStartPhotoPlaybackIntentResponse
only.
impl AsRef<INIntentResponse> for INStartPhotoPlaybackIntentResponse
INStartPhotoPlaybackIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INStartVideoCallIntentResponse
Available on crate feature INStartVideoCallIntentResponse
only.
impl AsRef<INIntentResponse> for INStartVideoCallIntentResponse
INStartVideoCallIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INStartWorkoutIntentResponse
Available on crate feature INStartWorkoutIntentResponse
only.
impl AsRef<INIntentResponse> for INStartWorkoutIntentResponse
INStartWorkoutIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INTransferMoneyIntentResponse
Available on crate feature INTransferMoneyIntentResponse
only.
impl AsRef<INIntentResponse> for INTransferMoneyIntentResponse
INTransferMoneyIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INUnsendMessagesIntentResponse
Available on crate feature INUnsendMessagesIntentResponse
only.
impl AsRef<INIntentResponse> for INUnsendMessagesIntentResponse
INUnsendMessagesIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<INIntentResponse> for INUpdateMediaAffinityIntentResponse
Available on crate feature INUpdateMediaAffinityIntentResponse
only.
impl AsRef<INIntentResponse> for INUpdateMediaAffinityIntentResponse
INUpdateMediaAffinityIntentResponse
only.Source§fn as_ref(&self) -> &INIntentResponse
fn as_ref(&self) -> &INIntentResponse
Source§impl AsRef<NSObject> for INIntentResponse
impl AsRef<NSObject> for INIntentResponse
Source§impl Borrow<AnyObject> for INIntentResponse
impl Borrow<AnyObject> for INIntentResponse
Source§impl Borrow<INIntentResponse> for INActivateCarSignalIntentResponse
Available on crate feature INActivateCarSignalIntentResponse
only.
impl Borrow<INIntentResponse> for INActivateCarSignalIntentResponse
INActivateCarSignalIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INAddMediaIntentResponse
Available on crate feature INAddMediaIntentResponse
only.
impl Borrow<INIntentResponse> for INAddMediaIntentResponse
INAddMediaIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INAddTasksIntentResponse
Available on crate feature INAddTasksIntentResponse
only.
impl Borrow<INIntentResponse> for INAddTasksIntentResponse
INAddTasksIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INAnswerCallIntentResponse
Available on crate feature INAnswerCallIntentResponse
only.
impl Borrow<INIntentResponse> for INAnswerCallIntentResponse
INAnswerCallIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INAppendToNoteIntentResponse
Available on crate feature INAppendToNoteIntentResponse
only.
impl Borrow<INIntentResponse> for INAppendToNoteIntentResponse
INAppendToNoteIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INBookRestaurantReservationIntentResponse
Available on crate feature INBookRestaurantReservationIntentResponse
only.
impl Borrow<INIntentResponse> for INBookRestaurantReservationIntentResponse
INBookRestaurantReservationIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INCancelRideIntentResponse
Available on crate feature INCancelRideIntentResponse
only.
impl Borrow<INIntentResponse> for INCancelRideIntentResponse
INCancelRideIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INCancelWorkoutIntentResponse
Available on crate feature INCancelWorkoutIntentResponse
only.
impl Borrow<INIntentResponse> for INCancelWorkoutIntentResponse
INCancelWorkoutIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INCreateNoteIntentResponse
Available on crate feature INCreateNoteIntentResponse
only.
impl Borrow<INIntentResponse> for INCreateNoteIntentResponse
INCreateNoteIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INCreateTaskListIntentResponse
Available on crate feature INCreateTaskListIntentResponse
only.
impl Borrow<INIntentResponse> for INCreateTaskListIntentResponse
INCreateTaskListIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INDeleteTasksIntentResponse
Available on crate feature INDeleteTasksIntentResponse
only.
impl Borrow<INIntentResponse> for INDeleteTasksIntentResponse
INDeleteTasksIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INEditMessageIntentResponse
Available on crate feature INEditMessageIntentResponse
only.
impl Borrow<INIntentResponse> for INEditMessageIntentResponse
INEditMessageIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INEndWorkoutIntentResponse
Available on crate feature INEndWorkoutIntentResponse
only.
impl Borrow<INIntentResponse> for INEndWorkoutIntentResponse
INEndWorkoutIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
Available on crate feature INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
only.
impl Borrow<INIntentResponse> for INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
INGetAvailableRestaurantReservationBookingDefaultsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetAvailableRestaurantReservationBookingsIntentResponse
Available on crate feature INGetAvailableRestaurantReservationBookingsIntentResponse
only.
impl Borrow<INIntentResponse> for INGetAvailableRestaurantReservationBookingsIntentResponse
INGetAvailableRestaurantReservationBookingsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetCarLockStatusIntentResponse
Available on crate feature INGetCarLockStatusIntentResponse
only.
impl Borrow<INIntentResponse> for INGetCarLockStatusIntentResponse
INGetCarLockStatusIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetCarPowerLevelStatusIntentResponse
Available on crate feature INGetCarPowerLevelStatusIntentResponse
only.
impl Borrow<INIntentResponse> for INGetCarPowerLevelStatusIntentResponse
INGetCarPowerLevelStatusIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetReservationDetailsIntentResponse
Available on crate feature INGetReservationDetailsIntentResponse
only.
impl Borrow<INIntentResponse> for INGetReservationDetailsIntentResponse
INGetReservationDetailsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetRestaurantGuestIntentResponse
Available on crate feature INGetRestaurantGuestIntentResponse
only.
impl Borrow<INIntentResponse> for INGetRestaurantGuestIntentResponse
INGetRestaurantGuestIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetRideStatusIntentResponse
Available on crate feature INGetRideStatusIntentResponse
only.
impl Borrow<INIntentResponse> for INGetRideStatusIntentResponse
INGetRideStatusIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetUserCurrentRestaurantReservationBookingsIntentResponse
Available on crate feature INGetUserCurrentRestaurantReservationBookingsIntentResponse
only.
impl Borrow<INIntentResponse> for INGetUserCurrentRestaurantReservationBookingsIntentResponse
INGetUserCurrentRestaurantReservationBookingsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INGetVisualCodeIntentResponse
Available on crate feature INGetVisualCodeIntentResponse
only.
impl Borrow<INIntentResponse> for INGetVisualCodeIntentResponse
INGetVisualCodeIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INHangUpCallIntentResponse
Available on crate feature INHangUpCallIntentResponse
only.
impl Borrow<INIntentResponse> for INHangUpCallIntentResponse
INHangUpCallIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INListCarsIntentResponse
Available on crate feature INListCarsIntentResponse
only.
impl Borrow<INIntentResponse> for INListCarsIntentResponse
INListCarsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INListRideOptionsIntentResponse
Available on crate feature INListRideOptionsIntentResponse
only.
impl Borrow<INIntentResponse> for INListRideOptionsIntentResponse
INListRideOptionsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INPauseWorkoutIntentResponse
Available on crate feature INPauseWorkoutIntentResponse
only.
impl Borrow<INIntentResponse> for INPauseWorkoutIntentResponse
INPauseWorkoutIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INPayBillIntentResponse
Available on crate feature INPayBillIntentResponse
only.
impl Borrow<INIntentResponse> for INPayBillIntentResponse
INPayBillIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INPlayMediaIntentResponse
Available on crate feature INPlayMediaIntentResponse
only.
impl Borrow<INIntentResponse> for INPlayMediaIntentResponse
INPlayMediaIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INRequestPaymentIntentResponse
Available on crate feature INRequestPaymentIntentResponse
only.
impl Borrow<INIntentResponse> for INRequestPaymentIntentResponse
INRequestPaymentIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INRequestRideIntentResponse
Available on crate feature INRequestRideIntentResponse
only.
impl Borrow<INIntentResponse> for INRequestRideIntentResponse
INRequestRideIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INResumeWorkoutIntentResponse
Available on crate feature INResumeWorkoutIntentResponse
only.
impl Borrow<INIntentResponse> for INResumeWorkoutIntentResponse
INResumeWorkoutIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSaveProfileInCarIntentResponse
Available on crate feature INSaveProfileInCarIntentResponse
only.
impl Borrow<INIntentResponse> for INSaveProfileInCarIntentResponse
INSaveProfileInCarIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchCallHistoryIntentResponse
Available on crate feature INSearchCallHistoryIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchCallHistoryIntentResponse
INSearchCallHistoryIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchForAccountsIntentResponse
Available on crate feature INSearchForAccountsIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchForAccountsIntentResponse
INSearchForAccountsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchForBillsIntentResponse
Available on crate feature INSearchForBillsIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchForBillsIntentResponse
INSearchForBillsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchForMediaIntentResponse
Available on crate feature INSearchForMediaIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchForMediaIntentResponse
INSearchForMediaIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchForMessagesIntentResponse
Available on crate feature INSearchForMessagesIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchForMessagesIntentResponse
INSearchForMessagesIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchForNotebookItemsIntentResponse
Available on crate feature INSearchForNotebookItemsIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchForNotebookItemsIntentResponse
INSearchForNotebookItemsIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSearchForPhotosIntentResponse
Available on crate feature INSearchForPhotosIntentResponse
only.
impl Borrow<INIntentResponse> for INSearchForPhotosIntentResponse
INSearchForPhotosIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSendMessageIntentResponse
Available on crate feature INSendMessageIntentResponse
only.
impl Borrow<INIntentResponse> for INSendMessageIntentResponse
INSendMessageIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSendPaymentIntentResponse
Available on crate feature INSendPaymentIntentResponse
only.
impl Borrow<INIntentResponse> for INSendPaymentIntentResponse
INSendPaymentIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSendRideFeedbackIntentResponse
Available on crate feature INSendRideFeedbackIntentResponse
only.
impl Borrow<INIntentResponse> for INSendRideFeedbackIntentResponse
INSendRideFeedbackIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetAudioSourceInCarIntentResponse
Available on crate feature INSetAudioSourceInCarIntentResponse
only.
impl Borrow<INIntentResponse> for INSetAudioSourceInCarIntentResponse
INSetAudioSourceInCarIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetCarLockStatusIntentResponse
Available on crate feature INSetCarLockStatusIntentResponse
only.
impl Borrow<INIntentResponse> for INSetCarLockStatusIntentResponse
INSetCarLockStatusIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetClimateSettingsInCarIntentResponse
Available on crate feature INSetClimateSettingsInCarIntentResponse
only.
impl Borrow<INIntentResponse> for INSetClimateSettingsInCarIntentResponse
INSetClimateSettingsInCarIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetDefrosterSettingsInCarIntentResponse
Available on crate feature INSetDefrosterSettingsInCarIntentResponse
only.
impl Borrow<INIntentResponse> for INSetDefrosterSettingsInCarIntentResponse
INSetDefrosterSettingsInCarIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetMessageAttributeIntentResponse
Available on crate feature INSetMessageAttributeIntentResponse
only.
impl Borrow<INIntentResponse> for INSetMessageAttributeIntentResponse
INSetMessageAttributeIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetProfileInCarIntentResponse
Available on crate feature INSetProfileInCarIntentResponse
only.
impl Borrow<INIntentResponse> for INSetProfileInCarIntentResponse
INSetProfileInCarIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetRadioStationIntentResponse
Available on crate feature INSetRadioStationIntentResponse
only.
impl Borrow<INIntentResponse> for INSetRadioStationIntentResponse
INSetRadioStationIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetSeatSettingsInCarIntentResponse
Available on crate feature INSetSeatSettingsInCarIntentResponse
only.
impl Borrow<INIntentResponse> for INSetSeatSettingsInCarIntentResponse
INSetSeatSettingsInCarIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSetTaskAttributeIntentResponse
Available on crate feature INSetTaskAttributeIntentResponse
only.
impl Borrow<INIntentResponse> for INSetTaskAttributeIntentResponse
INSetTaskAttributeIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INSnoozeTasksIntentResponse
Available on crate feature INSnoozeTasksIntentResponse
only.
impl Borrow<INIntentResponse> for INSnoozeTasksIntentResponse
INSnoozeTasksIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INStartAudioCallIntentResponse
Available on crate feature INStartAudioCallIntentResponse
only.
impl Borrow<INIntentResponse> for INStartAudioCallIntentResponse
INStartAudioCallIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INStartCallIntentResponse
Available on crate feature INStartCallIntentResponse
only.
impl Borrow<INIntentResponse> for INStartCallIntentResponse
INStartCallIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INStartPhotoPlaybackIntentResponse
Available on crate feature INStartPhotoPlaybackIntentResponse
only.
impl Borrow<INIntentResponse> for INStartPhotoPlaybackIntentResponse
INStartPhotoPlaybackIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INStartVideoCallIntentResponse
Available on crate feature INStartVideoCallIntentResponse
only.
impl Borrow<INIntentResponse> for INStartVideoCallIntentResponse
INStartVideoCallIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INStartWorkoutIntentResponse
Available on crate feature INStartWorkoutIntentResponse
only.
impl Borrow<INIntentResponse> for INStartWorkoutIntentResponse
INStartWorkoutIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INTransferMoneyIntentResponse
Available on crate feature INTransferMoneyIntentResponse
only.
impl Borrow<INIntentResponse> for INTransferMoneyIntentResponse
INTransferMoneyIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INUnsendMessagesIntentResponse
Available on crate feature INUnsendMessagesIntentResponse
only.
impl Borrow<INIntentResponse> for INUnsendMessagesIntentResponse
INUnsendMessagesIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<INIntentResponse> for INUpdateMediaAffinityIntentResponse
Available on crate feature INUpdateMediaAffinityIntentResponse
only.
impl Borrow<INIntentResponse> for INUpdateMediaAffinityIntentResponse
INUpdateMediaAffinityIntentResponse
only.Source§fn borrow(&self) -> &INIntentResponse
fn borrow(&self) -> &INIntentResponse
Source§impl Borrow<NSObject> for INIntentResponse
impl Borrow<NSObject> for INIntentResponse
Source§impl ClassType for INIntentResponse
impl ClassType for INIntentResponse
Source§const NAME: &'static str = "INIntentResponse"
const NAME: &'static str = "INIntentResponse"
Source§type ThreadKind = <<INIntentResponse as ClassType>::Super as ClassType>::ThreadKind
type ThreadKind = <<INIntentResponse as ClassType>::Super as ClassType>::ThreadKind
Source§impl CopyingHelper for INIntentResponse
impl CopyingHelper for INIntentResponse
Source§type Result = INIntentResponse
type Result = INIntentResponse
Self
if the type has no
immutable counterpart. Read moreSource§impl Debug for INIntentResponse
impl Debug for INIntentResponse
Source§impl Deref for INIntentResponse
impl Deref for INIntentResponse
Source§impl Hash for INIntentResponse
impl Hash for INIntentResponse
Source§impl Message for INIntentResponse
impl Message for INIntentResponse
Source§impl NSCoding for INIntentResponse
impl NSCoding for INIntentResponse
Source§impl NSCopying for INIntentResponse
impl NSCopying for INIntentResponse
Source§impl NSObjectProtocol for INIntentResponse
impl NSObjectProtocol for INIntentResponse
Source§fn isEqual(&self, other: Option<&AnyObject>) -> bool
fn isEqual(&self, other: Option<&AnyObject>) -> bool
Source§fn hash(&self) -> usize
fn hash(&self) -> usize
Source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
isKindOfClass
directly, or cast your objects with AnyObject::downcast_ref