AVCaptureVideoDataOutputSampleBufferDelegate

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

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§