pub trait UserMediaPermissionRequestExt: IsA<UserMediaPermissionRequest> + Sealed + 'static {
    // Provided methods
    fn is_for_audio_device(&self) -> bool { ... }
    fn is_for_video_device(&self) -> bool { ... }
    fn connect_is_for_audio_device_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_is_for_video_device_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Available on crate feature v2_8 only.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§