use objc2::{
extern_class, extern_conformance, extern_methods,
rc::{Allocated, Retained},
runtime::NSObject,
};
use objc2_foundation::NSObjectProtocol;
use super::MTLRasterizationRateLayerDescriptor;
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct MTLRasterizationRateLayerArray;
);
extern_conformance!(
unsafe impl NSObjectProtocol for MTLRasterizationRateLayerArray {}
);
impl MTLRasterizationRateLayerArray {
extern_methods!(
#[unsafe(method(objectAtIndexedSubscript:))]
#[unsafe(method_family = none)]
pub fn object_at_indexed_subscript(
&self,
layer_index: usize,
) -> Option<Retained<MTLRasterizationRateLayerDescriptor>>;
#[unsafe(method(setObject:atIndexedSubscript:))]
#[unsafe(method_family = none)]
pub fn set_object_at_indexed_subscript(
&self,
layer: Option<&MTLRasterizationRateLayerDescriptor>,
layer_index: usize,
);
);
}
impl MTLRasterizationRateLayerArray {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new() -> Retained<Self>;
);
}