use crate::common::*;
use crate::CoreData::*;
use crate::Foundation::*;
ns_enum!(
#[underlying(NSUInteger)]
pub enum NSDeleteRule {
NSNoActionDeleteRule = 0,
NSNullifyDeleteRule = 1,
NSCascadeDeleteRule = 2,
NSDenyDeleteRule = 3,
}
);
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSRelationshipDescription;
unsafe impl ClassType for NSRelationshipDescription {
#[inherits(NSObject)]
type Super = NSPropertyDescription;
}
);
extern_methods!(
unsafe impl NSRelationshipDescription {
#[method_id(@__retain_semantics Other destinationEntity)]
pub unsafe fn destinationEntity(&self) -> Option<Id<NSEntityDescription, Shared>>;
#[method(setDestinationEntity:)]
pub unsafe fn setDestinationEntity(&self, destinationEntity: Option<&NSEntityDescription>);
#[method_id(@__retain_semantics Other inverseRelationship)]
pub unsafe fn inverseRelationship(&self) -> Option<Id<NSRelationshipDescription, Shared>>;
#[method(setInverseRelationship:)]
pub unsafe fn setInverseRelationship(
&self,
inverseRelationship: Option<&NSRelationshipDescription>,
);
#[method(maxCount)]
pub unsafe fn maxCount(&self) -> NSUInteger;
#[method(setMaxCount:)]
pub unsafe fn setMaxCount(&self, maxCount: NSUInteger);
#[method(minCount)]
pub unsafe fn minCount(&self) -> NSUInteger;
#[method(setMinCount:)]
pub unsafe fn setMinCount(&self, minCount: NSUInteger);
#[method(deleteRule)]
pub unsafe fn deleteRule(&self) -> NSDeleteRule;
#[method(setDeleteRule:)]
pub unsafe fn setDeleteRule(&self, deleteRule: NSDeleteRule);
#[method(isToMany)]
pub unsafe fn isToMany(&self) -> bool;
#[method_id(@__retain_semantics Other versionHash)]
pub unsafe fn versionHash(&self) -> Id<NSData, Shared>;
#[method(isOrdered)]
pub unsafe fn isOrdered(&self) -> bool;
#[method(setOrdered:)]
pub unsafe fn setOrdered(&self, ordered: bool);
}
);