objc2_vision/generated/VNRequestRevisionProviding.rs
1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use objc2::__framework_prelude::*;
4
5use crate::*;
6
7extern_protocol!(
8 /// [Apple's documentation](https://developer.apple.com/documentation/vision/vnrequestrevisionproviding?language=objc)
9 pub unsafe trait VNRequestRevisionProviding {
10 /// The revision of the VNRequest subclass that was used to generate the object that implements this protocol.
11 #[unsafe(method(requestRevision))]
12 #[unsafe(method_family = none)]
13 unsafe fn requestRevision(&self) -> NSUInteger;
14 }
15);