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 { ... }
}

Provided Methods§

source

unsafe fn capture_output_did_output_sample_buffer( &self, capture_output: &AVCaptureOutput, sample_buffer: CMSampleBufferRef, connection: &AVCaptureConnection )
where Self: Sized + Message,

source

unsafe fn capture_output_did_drop_sample_buffer( &self, capture_output: &AVCaptureOutput, sample_buffer: CMSampleBufferRef, connection: &AVCaptureConnection )
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn AVCaptureVideoDataOutputSampleBufferDelegate

source§

const NAME: &'static str = "AVCaptureVideoDataOutputSampleBufferDelegate"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn AVCaptureVideoDataOutputSampleBufferDelegate

Implementations on Foreign Types§

source§

impl<T> AVCaptureVideoDataOutputSampleBufferDelegate for ProtocolObject<T>

Implementors§