Trait AVCaptureVideoDataOutputSampleBufferDelegate
Source pub unsafe trait AVCaptureVideoDataOutputSampleBufferDelegate: NSObjectProtocol {
// Provided methods
unsafe fn capture_output_did_output_sample_buffer(
&self,
capture_output: &AVCaptureOutput,
sample_buffer: CMSampleBufferRef,
connection: &AVCaptureConnection,
)
where Self: Sized + Message { ... }
unsafe fn capture_output_did_drop_sample_buffer(
&self,
capture_output: &AVCaptureOutput,
sample_buffer: CMSampleBufferRef,
connection: &AVCaptureConnection,
)
where Self: Sized + Message { ... }
}
The name of the Objective-C protocol that this type represents.
Get a reference to the Objective-C protocol object that this type
represents.
Read more