pub struct CVImageBuffer(_);

Implementations§

§

impl CVImageBuffer

pub fn io_surface(&self) -> IOSurface

pub fn width(&self) -> usize

pub fn height(&self) -> usize

pub fn plane_width(&self, plane: usize) -> usize

pub fn plane_height(&self, plane: usize) -> usize

pub fn pixel_format_type(&self) -> u32

Trait Implementations§

§

impl Clone for CVImageBuffer

§

fn clone(&self) -> CVImageBuffer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for CVImageBuffer

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Drop for CVImageBuffer

§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

impl PartialEq<CVImageBuffer> for CVImageBuffer

§

fn eq(&self, other: &CVImageBuffer) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl TCFType for CVImageBuffer

§

type Ref = *const __CVImageBuffer

The reference type wrapped inside this type.
§

fn as_concrete_TypeRef(&self) -> *const __CVImageBuffer

Returns the object as its concrete TypeRef.
§

unsafe fn wrap_under_get_rule( reference: *const __CVImageBuffer ) -> CVImageBuffer

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Get Rule”. The reference count is bumped.
§

fn as_CFTypeRef(&self) -> *const c_void

Returns the object as a raw CFTypeRef. The reference count is not adjusted.
§

unsafe fn wrap_under_create_rule( reference: *const __CVImageBuffer ) -> CVImageBuffer

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Create Rule”. The reference count is not bumped.
§

fn type_id() -> usize

Returns the type ID for this class.
§

fn as_CFType(&self) -> CFType

Returns the object as a wrapped CFType. The reference count is incremented by one.
§

fn into_CFType(self) -> CFTypewhere Self: Sized,

Returns the object as a wrapped CFType. Consumes self and avoids changing the reference count.
§

fn retain_count(&self) -> isize

Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero.
§

fn type_of(&self) -> usize

Returns the type ID of this object.
§

fn show(&self)

Writes a debugging version of this object on standard error.
§

fn instance_of<OtherCFType>(&self) -> boolwhere OtherCFType: TCFType,

Returns true if this value is an instance of another type.
§

impl<'a> ToVoid<CVImageBuffer> for &'a CVImageBuffer

§

impl ToVoid<CVImageBuffer> for *const __CVImageBuffer

§

impl ToVoid<CVImageBuffer> for CVImageBuffer

§

impl ConcreteCFType for CVImageBuffer

§

impl Eq for CVImageBuffer

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromMutVoid for Twhere T: TCFType,

§

unsafe fn from_mut_void<'a>(x: *mut c_void) -> ItemMutRef<'a, T>

§

impl<T> FromVoid for Twhere T: TCFType,

§

unsafe fn from_void<'a>(x: *const c_void) -> ItemRef<'a, T>

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.