Lt

Trait Lt 

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

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

Required Associated Types§

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl Lt<&VipsImage> for &[f64]

Source§

type Output = VipsImage

Source§

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

Source§

impl Lt<&VipsImage> for f64

Source§

type Output = VipsImage

Source§

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

Source§

impl Lt<VipsImage> for &[f64]

Source§

type Output = VipsImage

Source§

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

Source§

impl Lt<VipsImage> for f64

Source§

type Output = VipsImage

Source§

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

Source§

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

Source§

type Output = VipsImage

Source§

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

Source§

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

Source§

type Output = VipsImage

Source§

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

Implementors§