Trait tauri_runtime::window::dpi::Pixel[][src]

pub trait Pixel: Copy + Into<f64> {
    fn from_f64(f: f64) -> Self;

    fn cast<P: Pixel>(self) -> P { ... }
}
Expand description

A pixel definition. Must be created from a f64 value.

Required methods

fn from_f64(f: f64) -> Self[src]

Expand description

Creates the pixel from the f64 value.

Loading content...

Provided methods

fn cast<P: Pixel>(self) -> P[src]

Expand description

Casts a pixel.

Loading content...

Implementations on Foreign Types

impl Pixel for u8[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for u16[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for u32[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for i8[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for i16[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for i32[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for f32[src]

fn from_f64(f: f64) -> Self[src]

impl Pixel for f64[src]

fn from_f64(f: f64) -> Self[src]

Loading content...

Implementors

Loading content...