#![allow(non_snake_case)]
use objc2::extern_methods;
use objc2::rc::Retained;
use objc2_foundation::{NSError, NSRange};
use crate::{VNRecognizedText, VNRectangleObservation};
impl VNRecognizedText {
extern_methods!(
#[unsafe(method(boundingBoxForRange:error:_))]
#[unsafe(method_family = none)]
pub unsafe fn boundingBoxForRange_error(
&self,
range: NSRange,
) -> Result<Retained<VNRectangleObservation>, Retained<NSError>>;
);
}