Struct objc2::foundation::NSObject
source · #[repr(C)]pub struct NSObject { /* private fields */ }
Implementations§
Methods from Deref<Target = Object>§
sourcepub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
pub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
Returns a pointer to the instance variable / ivar with the given name.
This is similar to UnsafeCell::get
, see that for more information
on what is and isn’t safe to do.
Usually you will have defined the instance variable yourself with
ClassBuilder::add_ivar
, the type of the ivar T
must match the
type used in that.
Attempting to access or modify private implementation details of a class that you do no control using this is not supported, and may invoke undefined behaviour.
Library implementors are strongly encouraged to expose a safe interface to the ivar.
Panics
May panic if the object has no ivar with the given name. May also
panic if the type encoding of the ivar differs from the type encoding
of T
.
This should purely seen as help while debugging and is not guaranteed
(e.g. it may be disabled when debug_assertions
are off).
Safety
The object must have an instance variable with the given name, and it
must be of type T
. Any invariants that the object have assumed about
the value of the instance variable must not be violated.
No thread syncronization is done on accesses to the variable, so you must ensure that any access to the returned pointer do not cause data races, and that Rust’s mutability rules are not otherwise violated.
sourcepub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
pub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
Returns a reference to the instance variable with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
No thread syncronization is done, so you must ensure that no other
thread is concurrently mutating the variable. This requirement can be
considered upheld if all mutation happens through Object::ivar_mut
(since that takes &mut self
).
sourcepub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
👎Deprecated: Use Object::ivar
instead.
pub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
Object::ivar
instead.sourcepub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
pub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
Returns a mutable reference to the ivar with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
This access happens through &mut self
, which means we know it to be
the only reference, hence you do not need to do any work to ensure
that data races do not happen.
sourcepub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
👎Deprecated: Use Object::ivar_mut
instead.
pub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
Object::ivar_mut
instead.sourcepub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
pub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
Sets the value of the ivar with the given name.
This is just a helpful shorthand for Object::ivar_mut
, see that
for more information.
Safety
Same as Object::ivar_mut
.
Trait Implementations§
source§impl AsMut<NSObject> for NSAttributedString
impl AsMut<NSObject> for NSAttributedString
source§impl AsMut<NSObject> for NSException
impl AsMut<NSObject> for NSException
source§impl AsMut<NSObject> for NSMutableAttributedString
impl AsMut<NSObject> for NSMutableAttributedString
source§impl AsMut<NSObject> for NSMutableData
impl AsMut<NSObject> for NSMutableData
source§impl AsMut<NSObject> for NSMutableString
impl AsMut<NSObject> for NSMutableString
source§impl AsMut<NSObject> for NSProcessInfo
impl AsMut<NSObject> for NSProcessInfo
source§impl AsRef<NSObject> for NSAttributedString
impl AsRef<NSObject> for NSAttributedString
source§impl AsRef<NSObject> for NSException
impl AsRef<NSObject> for NSException
source§impl AsRef<NSObject> for NSMutableAttributedString
impl AsRef<NSObject> for NSMutableAttributedString
source§impl AsRef<NSObject> for NSMutableData
impl AsRef<NSObject> for NSMutableData
source§impl AsRef<NSObject> for NSMutableString
impl AsRef<NSObject> for NSMutableString
source§impl AsRef<NSObject> for NSProcessInfo
impl AsRef<NSObject> for NSProcessInfo
source§impl Borrow<NSObject> for NSAttributedString
impl Borrow<NSObject> for NSAttributedString
source§impl Borrow<NSObject> for NSException
impl Borrow<NSObject> for NSException
source§impl Borrow<NSObject> for NSMutableAttributedString
impl Borrow<NSObject> for NSMutableAttributedString
source§impl Borrow<NSObject> for NSMutableData
impl Borrow<NSObject> for NSMutableData
source§impl Borrow<NSObject> for NSMutableString
impl Borrow<NSObject> for NSMutableString
source§impl Borrow<NSObject> for NSProcessInfo
impl Borrow<NSObject> for NSProcessInfo
source§impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSArray<T, O>
impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSArray<T, O>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSAttributedString
impl BorrowMut<NSObject> for NSAttributedString
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSBundle
impl BorrowMut<NSObject> for NSBundle
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSData
impl BorrowMut<NSObject> for NSData
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<K: Message, V: Message> BorrowMut<NSObject> for NSDictionary<K, V>
impl<K: Message, V: Message> BorrowMut<NSObject> for NSDictionary<K, V>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSError
impl BorrowMut<NSObject> for NSError
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSException
impl BorrowMut<NSObject> for NSException
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSMutableArray<T, O>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableAttributedString
impl BorrowMut<NSObject> for NSMutableAttributedString
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableData
impl BorrowMut<NSObject> for NSMutableData
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<K: Message, V: Message> BorrowMut<NSObject> for NSMutableDictionary<K, V>
impl<K: Message, V: Message> BorrowMut<NSObject> for NSMutableDictionary<K, V>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSMutableSet<T, O>
impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSMutableSet<T, O>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSMutableString
impl BorrowMut<NSObject> for NSMutableString
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSNumber
impl BorrowMut<NSObject> for NSNumber
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSProcessInfo
impl BorrowMut<NSObject> for NSProcessInfo
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSSet<T, O>
impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSSet<T, O>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSString
impl BorrowMut<NSObject> for NSString
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSThread
impl BorrowMut<NSObject> for NSThread
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSUUID
impl BorrowMut<NSObject> for NSUUID
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<NSObject> for NSValue
impl BorrowMut<NSObject> for NSValue
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<Object> for NSObject
impl BorrowMut<Object> for NSObject
source§fn borrow_mut(&mut self) -> &mut Object
fn borrow_mut(&mut self) -> &mut Object
source§impl ClassType for NSObject
impl ClassType for NSObject
source§const NAME: &'static str = "NSObject"
const NAME: &'static str = "NSObject"
source§fn class() -> &'static Class
fn class() -> &'static Class
source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
source§impl Hash for NSObject
impl Hash for NSObject
Hashing in Objective-C has the exact same requirement as in Rust:
If two objects are equal (as determined by the isEqual: method), they must have the same hash value.
See https://developer.apple.com/documentation/objectivec/1418956-nsobject/1418859-hash
source§impl PartialEq<NSObject> for NSObject
impl PartialEq<NSObject> for NSObject
Objective-C equality has approximately the same semantics as Rust equality (although less aptly specified).
At the very least, equality is expected to be symmetric and transitive, and that’s about the best we can do.
See also https://nshipster.com/equality/
source§impl RefEncode for NSObject
impl RefEncode for NSObject
source§const ENCODING_REF: Encoding = <Object as crate::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <Object as crate::RefEncode>::ENCODING_REF
impl Eq for NSObject
Most types’ equality is reflexive.