[][src]Struct opencv::core::Matx

#[repr(C)]pub struct Matx<T: ValidMatxType, A: SizedArray<T>> {
    pub val: A::Storage,
}

Fields

val: A::Storage

Implementations

impl<T: ValidMatxType, A: SizedArray<T>> Matx<T, A>[src]

pub fn from(s: A::Storage) -> Self[src]

Trait Implementations

impl<T: Clone + ValidMatxType, A: Clone + SizedArray<T>> Clone for Matx<T, A> where
    A::Storage: Clone
[src]

impl<T: Copy + ValidMatxType, A: Copy + SizedArray<T>> Copy for Matx<T, A> where
    A::Storage: Copy
[src]

impl<T: ValidMatxType, A: SizedArray<T>> Debug for Matx<T, A>[src]

impl<T: ValidMatxType, A: SizedArray<T>> Default for Matx<T, A>[src]

impl<T: ValidMatxType, A: SizedArray<T>> Index<(usize, usize)> for Matx<T, A>[src]

type Output = T

The returned type after indexing.

impl<T: ValidMatxType, A: SizedArray<T>> IndexMut<(usize, usize)> for Matx<T, A>[src]

impl<T: ValidMatxType, A: SizedArray<T>> MatxTrait for Matx<T, A>[src]

type ElemType = T

impl<T: ValidMatxType, A: SizedArray<T>> PartialEq<Matx<T, A>> for Matx<T, A>[src]

impl<T: ValidMatxType, A: SizedArray<T>> ToInputArray for Matx<T, A> where
    Self: MatxExtern<T, A>, 
[src]

impl<T: ValidMatxType, A: SizedArray<T>, '_> ToInputArray for &'_ Matx<T, A> where
    Matx<T, A>: MatxExtern<T, A>, 
[src]

impl<T: ValidMatxType, A: SizedArray<T>> ToInputOutputArray for Matx<T, A> where
    Self: MatxExtern<T, A>, 
[src]

impl<T: ValidMatxType, A: SizedArray<T>, '_> ToInputOutputArray for &'_ mut Matx<T, A> where
    Matx<T, A>: MatxExtern<T, A>, 
[src]

impl<T: ValidMatxType, A: SizedArray<T>> ToOutputArray for Matx<T, A> where
    Self: MatxExtern<T, A>, 
[src]

impl<T: ValidMatxType, A: SizedArray<T>, '_> ToOutputArray for &'_ mut Matx<T, A> where
    Matx<T, A>: MatxExtern<T, A>, 
[src]

Auto Trait Implementations

impl<T, A> RefUnwindSafe for Matx<T, A> where
    <A as SizedArray<T>>::Storage: RefUnwindSafe
[src]

impl<T, A> Send for Matx<T, A> where
    <A as SizedArray<T>>::Storage: Send
[src]

impl<T, A> Sync for Matx<T, A> where
    <A as SizedArray<T>>::Storage: Sync
[src]

impl<T, A> Unpin for Matx<T, A> where
    <A as SizedArray<T>>::Storage: Unpin
[src]

impl<T, A> UnwindSafe for Matx<T, A> where
    <A as SizedArray<T>>::Storage: UnwindSafe
[src]

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.