[][src]Struct opencv::core::Matx61

#[repr(C)]pub struct Matx61<T: ValidMatxType> {
    pub val: [T; 6],
}

Fields

val: [T; 6]

Methods

impl<T: ValidMatxType> Matx61<T>[src]

pub const ROWS: usize[src]

pub const COLS: usize[src]

pub const CHANNELS: usize[src]

Trait Implementations

impl<T: Clone + ValidMatxType> Clone for Matx61<T>[src]

impl<T: Copy + ValidMatxType> Copy for Matx61<T>[src]

impl<T: ValidMatxType> Debug for Matx61<T>[src]

impl<T: ValidMatxType> Default for Matx61<T>[src]

impl<T: ValidMatxType> From<[T; 6]> for Matx61<T>[src]

impl<T: ValidMatxType> Index<(usize, usize)> for Matx61<T>[src]

type Output = T

The returned type after indexing.

impl<T: ValidMatxType> IndexMut<(usize, usize)> for Matx61<T>[src]

impl<T: ValidMatxType> MatxTrait for Matx61<T>[src]

type ElemType = T

impl<T: ValidMatxType> PartialEq<Matx61<T>> for Matx61<T>[src]

impl ToInputArray for Matx61<f32>[src]

impl<'_> ToInputArray for &'_ Matx61<f32>[src]

impl ToInputArray for Matx61<f64>[src]

impl<'_> ToInputArray for &'_ Matx61<f64>[src]

impl ToInputOutputArray for Matx61<f32>[src]

impl<'_> ToInputOutputArray for &'_ mut Matx61<f32>[src]

impl ToInputOutputArray for Matx61<f64>[src]

impl<'_> ToInputOutputArray for &'_ mut Matx61<f64>[src]

impl ToOutputArray for Matx61<f32>[src]

impl<'_> ToOutputArray for &'_ mut Matx61<f32>[src]

impl ToOutputArray for Matx61<f64>[src]

impl<'_> ToOutputArray for &'_ mut Matx61<f64>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Matx61<T> where
    T: RefUnwindSafe

impl<T> Send for Matx61<T> where
    T: Send

impl<T> Sync for Matx61<T> where
    T: Sync

impl<T> Unpin for Matx61<T> where
    T: Unpin

impl<T> UnwindSafe for Matx61<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.