pub unsafe trait AVExternalSyncDeviceDelegate: NSObjectProtocol {
// Provided methods
unsafe fn externalSyncDeviceStatusDidChange(
&self,
device: &AVExternalSyncDevice,
)
where Self: Sized + Message { ... }
unsafe fn externalSyncDevice_failedWithError(
&self,
device: &AVExternalSyncDevice,
error: Option<&NSError>,
)
where Self: Sized + Message { ... }
}Available on crate feature
AVExternalSyncDevice only.Expand description
Defines an interface for delegates of AVCaptureDeviceInput to respond to events that occur when connecting, calibrating, and disconnecting external sync devices.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn externalSyncDeviceStatusDidChange(
&self,
device: &AVExternalSyncDevice,
)
unsafe fn externalSyncDeviceStatusDidChange( &self, device: &AVExternalSyncDevice, )
Informs your delegate when the external sync device status has changed.