Struct objc2_core_data::NSManagedObjectContext
source · #[repr(C)]pub struct NSManagedObjectContext { /* private fields */ }Available on crate feature
NSManagedObjectContext only.Implementations§
source§impl NSManagedObjectContext
impl NSManagedObjectContext
pub unsafe fn new() -> Retained<Self>
👎Deprecated: Use -initWithConcurrencyType: instead
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>
👎Deprecated: Use -initWithConcurrencyType: instead
pub unsafe fn initWithConcurrencyType( this: Allocated<Self>, ct: NSManagedObjectContextConcurrencyType ) -> Retained<Self>
pub unsafe fn performBlock(&self, block: &Block<dyn Fn()>)
Available on crate feature
block2 only.pub unsafe fn performBlockAndWait(&self, block: &Block<dyn Fn() + '_>)
Available on crate feature
block2 only.pub unsafe fn persistentStoreCoordinator( &self ) -> Option<Retained<NSPersistentStoreCoordinator>>
Available on crate feature
NSPersistentStoreCoordinator only.pub unsafe fn setPersistentStoreCoordinator( &self, persistent_store_coordinator: Option<&NSPersistentStoreCoordinator> )
Available on crate feature
NSPersistentStoreCoordinator only.pub unsafe fn parentContext(&self) -> Option<Retained<NSManagedObjectContext>>
pub unsafe fn setParentContext( &self, parent_context: Option<&NSManagedObjectContext> )
pub unsafe fn name(&self) -> Option<Retained<NSString>>
pub unsafe fn setName(&self, name: Option<&NSString>)
pub unsafe fn undoManager(&self) -> Option<Retained<NSUndoManager>>
pub unsafe fn setUndoManager(&self, undo_manager: Option<&NSUndoManager>)
pub unsafe fn hasChanges(&self) -> bool
pub unsafe fn userInfo(&self) -> Retained<NSMutableDictionary>
pub unsafe fn concurrencyType(&self) -> NSManagedObjectContextConcurrencyType
pub unsafe fn objectRegisteredForID( &self, object_id: &NSManagedObjectID ) -> Option<Retained<NSManagedObject>>
Available on crate features
NSManagedObject and NSManagedObjectID only.pub unsafe fn objectWithID( &self, object_id: &NSManagedObjectID ) -> Retained<NSManagedObject>
Available on crate features
NSManagedObject and NSManagedObjectID only.pub unsafe fn existingObjectWithID_error( &self, object_id: &NSManagedObjectID ) -> Result<Retained<NSManagedObject>, Retained<NSError>>
Available on crate features
NSManagedObject and NSManagedObjectID only.pub unsafe fn executeFetchRequest_error( &self, request: &NSFetchRequest ) -> Result<Retained<NSArray>, Retained<NSError>>
Available on crate features
NSFetchRequest and NSPersistentStoreRequest only.pub unsafe fn executeRequest_error( &self, request: &NSPersistentStoreRequest ) -> Result<Retained<NSPersistentStoreResult>, Retained<NSError>>
Available on crate features
NSPersistentStoreRequest and NSPersistentStoreResult only.pub unsafe fn insertObject(&self, object: &NSManagedObject)
Available on crate feature
NSManagedObject only.pub unsafe fn deleteObject(&self, object: &NSManagedObject)
Available on crate feature
NSManagedObject only.pub unsafe fn refreshObject_mergeChanges( &self, object: &NSManagedObject, flag: bool )
Available on crate feature
NSManagedObject only.pub unsafe fn detectConflictsForObject(&self, object: &NSManagedObject)
Available on crate feature
NSManagedObject only.pub unsafe fn observeValueForKeyPath_ofObject_change_context( &self, key_path: Option<&NSString>, object: Option<&AnyObject>, change: Option<&NSDictionary<NSString, AnyObject>>, context: *mut c_void )
pub unsafe fn processPendingChanges(&self)
pub unsafe fn assignObject_toPersistentStore( &self, object: &AnyObject, store: &NSPersistentStore )
Available on crate feature
NSPersistentStore only.pub unsafe fn insertedObjects(&self) -> Retained<NSSet<NSManagedObject>>
Available on crate feature
NSManagedObject only.pub unsafe fn updatedObjects(&self) -> Retained<NSSet<NSManagedObject>>
Available on crate feature
NSManagedObject only.pub unsafe fn deletedObjects(&self) -> Retained<NSSet<NSManagedObject>>
Available on crate feature
NSManagedObject only.pub unsafe fn registeredObjects(&self) -> Retained<NSSet<NSManagedObject>>
Available on crate feature
NSManagedObject only.pub unsafe fn undo(&self)
pub unsafe fn redo(&self)
pub unsafe fn reset(&self)
pub unsafe fn rollback(&self)
pub unsafe fn save(&self) -> Result<(), Retained<NSError>>
pub unsafe fn refreshAllObjects(&self)
pub unsafe fn lock(&self)
👎Deprecated: Use a queue style context and -performBlockAndWait: instead
pub unsafe fn unlock(&self)
👎Deprecated: Use a queue style context and -performBlockAndWait: instead
pub unsafe fn tryLock(&self) -> bool
👎Deprecated: Use a queue style context and -performBlock: instead
pub unsafe fn propagatesDeletesAtEndOfEvent(&self) -> bool
pub unsafe fn setPropagatesDeletesAtEndOfEvent( &self, propagates_deletes_at_end_of_event: bool )
pub unsafe fn retainsRegisteredObjects(&self) -> bool
pub unsafe fn setRetainsRegisteredObjects( &self, retains_registered_objects: bool )
pub unsafe fn shouldDeleteInaccessibleFaults(&self) -> bool
pub unsafe fn setShouldDeleteInaccessibleFaults( &self, should_delete_inaccessible_faults: bool )
pub unsafe fn shouldHandleInaccessibleFault_forObjectID_triggeredByProperty( &self, fault: &NSManagedObject, oid: &NSManagedObjectID, property: Option<&NSPropertyDescription> ) -> bool
Available on crate features
NSManagedObject and NSManagedObjectID and NSPropertyDescription only.pub unsafe fn stalenessInterval(&self) -> NSTimeInterval
pub unsafe fn setStalenessInterval(&self, staleness_interval: NSTimeInterval)
pub unsafe fn mergePolicy(&self) -> Retained<AnyObject>
pub unsafe fn setMergePolicy(&self, merge_policy: &AnyObject)
pub unsafe fn obtainPermanentIDsForObjects_error( &self, objects: &NSArray<NSManagedObject> ) -> Result<(), Retained<NSError>>
Available on crate feature
NSManagedObject only.pub unsafe fn mergeChangesFromContextDidSaveNotification( &self, notification: &NSNotification )
pub unsafe fn mergeChangesFromRemoteContextSave_intoContexts( change_notification_data: &NSDictionary, contexts: &NSArray<NSManagedObjectContext> )
pub unsafe fn queryGenerationToken( &self ) -> Option<Retained<NSQueryGenerationToken>>
Available on crate feature
NSQueryGenerationToken only.pub unsafe fn setQueryGenerationFromToken_error( &self, generation: Option<&NSQueryGenerationToken> ) -> Result<(), Retained<NSError>>
Available on crate feature
NSQueryGenerationToken only.pub unsafe fn automaticallyMergesChangesFromParent(&self) -> bool
pub unsafe fn setAutomaticallyMergesChangesFromParent( &self, automatically_merges_changes_from_parent: bool )
pub unsafe fn transactionAuthor(&self) -> Option<Retained<NSString>>
pub unsafe fn setTransactionAuthor(&self, transaction_author: Option<&NSString>)
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.
§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 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.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut instead.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 NSManagedObjectContext
impl AsMut<AnyObject> for NSManagedObjectContext
source§impl AsMut<NSObject> for NSManagedObjectContext
impl AsMut<NSObject> for NSManagedObjectContext
source§impl AsRef<AnyObject> for NSManagedObjectContext
impl AsRef<AnyObject> for NSManagedObjectContext
source§impl AsRef<NSObject> for NSManagedObjectContext
impl AsRef<NSObject> for NSManagedObjectContext
source§impl Borrow<AnyObject> for NSManagedObjectContext
impl Borrow<AnyObject> for NSManagedObjectContext
source§impl Borrow<NSObject> for NSManagedObjectContext
impl Borrow<NSObject> for NSManagedObjectContext
source§impl BorrowMut<AnyObject> for NSManagedObjectContext
impl BorrowMut<AnyObject> for NSManagedObjectContext
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 NSManagedObjectContext
impl BorrowMut<NSObject> for NSManagedObjectContext
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 ClassType for NSManagedObjectContext
impl ClassType for NSManagedObjectContext
§type Mutability = InteriorMutable
type Mutability = InteriorMutable
Whether the type is mutable or immutable. Read more
source§const NAME: &'static str = "NSManagedObjectContext"
const NAME: &'static str = "NSManagedObjectContext"
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 NSManagedObjectContext
impl Debug for NSManagedObjectContext
source§impl Deref for NSManagedObjectContext
impl Deref for NSManagedObjectContext
source§impl DerefMut for NSManagedObjectContext
impl DerefMut for NSManagedObjectContext
source§impl Hash for NSManagedObjectContext
impl Hash for NSManagedObjectContext
source§impl NSCoding for NSManagedObjectContext
impl NSCoding for NSManagedObjectContext
source§impl NSLocking for NSManagedObjectContext
impl NSLocking for NSManagedObjectContext
source§impl NSObjectProtocol for NSManagedObjectContext
impl NSObjectProtocol for NSManagedObjectContext
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 NSManagedObjectContext
impl PartialEq for NSManagedObjectContext
source§fn eq(&self, other: &NSManagedObjectContext) -> bool
fn eq(&self, other: &NSManagedObjectContext) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RefEncode for NSManagedObjectContext
impl RefEncode for NSManagedObjectContext
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
impl Eq for NSManagedObjectContext
impl Message for NSManagedObjectContext
impl StructuralPartialEq for NSManagedObjectContext
Auto Trait Implementations§
impl !Freeze for NSManagedObjectContext
impl !RefUnwindSafe for NSManagedObjectContext
impl !Send for NSManagedObjectContext
impl !Sync for NSManagedObjectContext
impl !Unpin for NSManagedObjectContext
impl !UnwindSafe for NSManagedObjectContext
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