Gt

Trait Gt 

Source
pub trait Gt<T> {
    type Output: ?Sized;

    // Required method
    fn gt(self, b: T) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn gt(self, b: T) -> Self::Output

Implementations on Foreign Types§

Source§

impl Gt<&VipsImage> for &[f64]

Source§

type Output = VipsImage

Source§

fn gt(self, b: &VipsImage) -> Self::Output

Source§

impl Gt<&VipsImage> for f64

Source§

type Output = VipsImage

Source§

fn gt(self, b: &VipsImage) -> Self::Output

Source§

impl Gt<VipsImage> for &[f64]

Source§

type Output = VipsImage

Source§

fn gt(self, b: VipsImage) -> Self::Output

Source§

impl Gt<VipsImage> for f64

Source§

type Output = VipsImage

Source§

fn gt(self, b: VipsImage) -> Self::Output

Source§

impl<const N: usize> Gt<&VipsImage> for &[f64; N]

Source§

type Output = VipsImage

Source§

fn gt(self, b: &VipsImage) -> Self::Output

Source§

impl<const N: usize> Gt<VipsImage> for &[f64; N]

Source§

type Output = VipsImage

Source§

fn gt(self, b: VipsImage) -> Self::Output

Implementors§