Trait WINSize

Source
pub trait WINSize {
    // Required method
    fn get(self) -> (i32, i32, u32, u32);
}

Required Methods§

Source

fn get(self) -> (i32, i32, u32, u32)

Implementations on Foreign Types§

Source§

impl<A, B> WINSize for (A, B)
where u32: Cast<A> + Cast<B>,

Source§

fn get(self) -> (i32, i32, u32, u32)

Source§

impl<A, B, C, D> WINSize for (A, B, C, D)
where i32: Cast<A> + Cast<B>, u32: Cast<C> + Cast<D>,

Source§

fn get(self) -> (i32, i32, u32, u32)

Implementors§