#[repr(C)]pub struct AVCaptureDeviceInput { /* private fields */ }Implementations§
Source§impl AVCaptureDeviceInput
impl AVCaptureDeviceInput
pub fn from_device(device: &AVCaptureDevice) -> Result<Id<Self>, Id<NSError>>
pub fn init_with_device( this: Allocated<Self>, device: &AVCaptureDevice, ) -> Result<Id<Self>, Id<NSError>>
Methods from Deref<Target = AVCaptureInput>§
pub fn ports(&self) -> Id<NSArray<AVCaptureInputPort>>
Methods from Deref<Target = NSObject>§
Sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
Sourcepub fn class(&self) -> &'static AnyClass
pub fn class(&self) -> &'static AnyClass
Dynamically find the class of this object.
§Example
Check that an instance of NSObject has the precise class NSObject.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());Sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load instead.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load instead.Use Ivar::load instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T.
See Ivar::load_ptr for details surrounding this.
Sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut instead.Use Ivar::load_mut instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T.
See Ivar::load_ptr for details surrounding this.
Trait Implementations§
Source§impl AsMut<AVCaptureInput> for AVCaptureDeviceInput
impl AsMut<AVCaptureInput> for AVCaptureDeviceInput
Source§fn as_mut(&mut self) -> &mut AVCaptureInput
fn as_mut(&mut self) -> &mut AVCaptureInput
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<AnyObject> for AVCaptureDeviceInput
impl AsMut<AnyObject> for AVCaptureDeviceInput
Source§impl AsRef<AVCaptureInput> for AVCaptureDeviceInput
impl AsRef<AVCaptureInput> for AVCaptureDeviceInput
Source§fn as_ref(&self) -> &AVCaptureInput
fn as_ref(&self) -> &AVCaptureInput
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<AnyObject> for AVCaptureDeviceInput
impl AsRef<AnyObject> for AVCaptureDeviceInput
Source§impl Borrow<AVCaptureInput> for AVCaptureDeviceInput
impl Borrow<AVCaptureInput> for AVCaptureDeviceInput
Source§fn borrow(&self) -> &AVCaptureInput
fn borrow(&self) -> &AVCaptureInput
Immutably borrows from an owned value. Read more
Source§impl Borrow<AnyObject> for AVCaptureDeviceInput
impl Borrow<AnyObject> for AVCaptureDeviceInput
Source§impl BorrowMut<AVCaptureInput> for AVCaptureDeviceInput
impl BorrowMut<AVCaptureInput> for AVCaptureDeviceInput
Source§fn borrow_mut(&mut self) -> &mut AVCaptureInput
fn borrow_mut(&mut self) -> &mut AVCaptureInput
Mutably borrows from an owned value. Read more
Source§impl BorrowMut<AnyObject> for AVCaptureDeviceInput
impl BorrowMut<AnyObject> for AVCaptureDeviceInput
Source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
Mutably borrows from an owned value. Read more
Source§impl ClassType for AVCaptureDeviceInput
impl ClassType for AVCaptureDeviceInput
Source§const NAME: &'static str = "AVCaptureDeviceInput"
const NAME: &'static str = "AVCaptureDeviceInput"
The name of the Objective-C class that this type represents. Read more
Source§type Super = AVCaptureInput
type Super = AVCaptureInput
The superclass of this class. Read more
Source§type Mutability = InteriorMutable
type Mutability = InteriorMutable
Whether the type is mutable or immutable. Read more
Source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
Get a reference to the Objective-C class that this type represents. Read more
Source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
Get a mutable reference to the superclass.
Source§impl Debug for AVCaptureDeviceInput
impl Debug for AVCaptureDeviceInput
Source§impl Deref for AVCaptureDeviceInput
impl Deref for AVCaptureDeviceInput
Source§impl DerefMut for AVCaptureDeviceInput
impl DerefMut for AVCaptureDeviceInput
Source§impl Hash for AVCaptureDeviceInput
impl Hash for AVCaptureDeviceInput
Source§impl NSObjectProtocol for AVCaptureDeviceInput
impl NSObjectProtocol for AVCaptureDeviceInput
Source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
Check whether the object is equal to an arbitrary other object. Read more
Source§fn hash(&self) -> usize
fn hash(&self) -> usize
An integer that can be used as a table address in a hash table
structure. Read more
Source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of the class, or one of its
subclasses. Read more
Source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
Check if the object is an instance of the class type, or one of its
subclasses. Read more
Source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of a specific class, without
checking subclasses. Read more
Source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
Check whether the object implements or inherits a method with the
given selector. Read more
Source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
Check whether the object conforms to a given protocol. Read more
Source§fn debugDescription(&self) -> Retained<NSObject>
fn debugDescription(&self) -> Retained<NSObject>
A textual representation of the object to use when debugging. Read more
Source§impl PartialEq for AVCaptureDeviceInput
impl PartialEq for AVCaptureDeviceInput
Source§impl RefEncode for AVCaptureDeviceInput
impl RefEncode for AVCaptureDeviceInput
Source§const ENCODING_REF: Encoding = <AVCaptureInput as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <AVCaptureInput as ::objc2::RefEncode>::ENCODING_REF
The Objective-C type-encoding for a reference of this type. Read more
impl Eq for AVCaptureDeviceInput
impl Message for AVCaptureDeviceInput
impl StructuralPartialEq for AVCaptureDeviceInput
Auto Trait Implementations§
impl !Freeze for AVCaptureDeviceInput
impl !RefUnwindSafe for AVCaptureDeviceInput
impl !Send for AVCaptureDeviceInput
impl !Sync for AVCaptureDeviceInput
impl !Unpin for AVCaptureDeviceInput
impl !UnwindSafe for AVCaptureDeviceInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more