use crate::common::*;
use crate::Foundation::*;
__inner_extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSCache<
KeyType: Message = Object,
ObjectType: Message = Object,
KeyTypeOwnership: Ownership = Shared,
ObjectTypeOwnership: Ownership = Shared,
> {
_inner0: PhantomData<*mut (KeyType, KeyTypeOwnership)>,
_inner1: PhantomData<*mut (ObjectType, ObjectTypeOwnership)>,
notunwindsafe: PhantomData<&'static mut ()>,
}
unsafe impl<
KeyType: Message,
ObjectType: Message,
KeyTypeOwnership: Ownership,
ObjectTypeOwnership: Ownership,
> ClassType for NSCache<KeyType, ObjectType, KeyTypeOwnership, ObjectTypeOwnership>
{
type Super = NSObject;
}
);
extern_methods!(
unsafe impl<
KeyType: Message,
ObjectType: Message,
KeyTypeOwnership: Ownership,
ObjectTypeOwnership: Ownership,
> NSCache<KeyType, ObjectType, KeyTypeOwnership, ObjectTypeOwnership>
{
#[method_id(@__retain_semantics Other name)]
pub unsafe fn name(&self) -> Id<NSString, Shared>;
#[method(setName:)]
pub unsafe fn setName(&self, name: &NSString);
#[method_id(@__retain_semantics Other delegate)]
pub unsafe fn delegate(&self) -> Option<Id<NSCacheDelegate, Shared>>;
#[method(setDelegate:)]
pub unsafe fn setDelegate(&self, delegate: Option<&NSCacheDelegate>);
#[method_id(@__retain_semantics Other objectForKey:)]
pub unsafe fn objectForKey(&self, key: &KeyType) -> Option<Id<ObjectType, Shared>>;
#[method(setObject:forKey:)]
pub unsafe fn setObject_forKey(&self, obj: &ObjectType, key: &KeyType);
#[method(setObject:forKey:cost:)]
pub unsafe fn setObject_forKey_cost(&self, obj: &ObjectType, key: &KeyType, g: NSUInteger);
#[method(removeObjectForKey:)]
pub unsafe fn removeObjectForKey(&self, key: &KeyType);
#[method(removeAllObjects)]
pub unsafe fn removeAllObjects(&self);
#[method(totalCostLimit)]
pub unsafe fn totalCostLimit(&self) -> NSUInteger;
#[method(setTotalCostLimit:)]
pub unsafe fn setTotalCostLimit(&self, totalCostLimit: NSUInteger);
#[method(countLimit)]
pub unsafe fn countLimit(&self) -> NSUInteger;
#[method(setCountLimit:)]
pub unsafe fn setCountLimit(&self, countLimit: NSUInteger);
#[method(evictsObjectsWithDiscardedContent)]
pub unsafe fn evictsObjectsWithDiscardedContent(&self) -> bool;
#[method(setEvictsObjectsWithDiscardedContent:)]
pub unsafe fn setEvictsObjectsWithDiscardedContent(
&self,
evictsObjectsWithDiscardedContent: bool,
);
}
);
extern_protocol!(
pub struct NSCacheDelegate;
unsafe impl ProtocolType for NSCacheDelegate {
#[optional]
#[method(cache:willEvictObject:)]
pub unsafe fn cache_willEvictObject(&self, cache: &NSCache, obj: &Object);
}
);