Ge

Trait Ge 

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

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

Required Associated Types§

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl Ge<&VipsImage> for &[f64]

Source§

type Output = VipsImage

Source§

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

Source§

impl Ge<&VipsImage> for f64

Source§

type Output = VipsImage

Source§

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

Source§

impl Ge<VipsImage> for &[f64]

Source§

type Output = VipsImage

Source§

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

Source§

impl Ge<VipsImage> for f64

Source§

type Output = VipsImage

Source§

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

Source§

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

Source§

type Output = VipsImage

Source§

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

Source§

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

Source§

type Output = VipsImage

Source§

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

Implementors§