[]Struct piston::Api

pub struct Api {
    pub api: Cow<'static, str>,
    pub major: u32,
    pub minor: u32,
}

Stores graphics API version.

Fields

api: Cow<'static, str>

A string identifying the API.

major: u32

Major version.

minor: u32

Minor version.

Methods

impl Version

pub fn opengl(major: u32, minor: u32) -> Version

Creates a new OpenGL version.

pub fn vulkan(major: u32, minor: u32) -> Version

Creates a new Vulkan version.

pub fn directx(major: u32, minor: u32) -> Version

Creates a new DirectX version.

pub fn metal(major: u32, minor: u32) -> Version

Creates a new Metal version.

pub fn is_opengl(&self) -> bool

Returns true if the API is OpenGL, false otherwise.

pub fn is_vulkan(&self) -> bool

Returns true if the API is Vulkan, false otherwise.

pub fn is_directx(&self) -> bool

Returns true if the API is DirectX, false otherwise.

pub fn is_metal(&self) -> bool

Returns true if the API is metal, false otherwise.

Trait Implementations

impl Eq for Version

impl PartialEq<Version> for Version

impl Clone for Version

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Version

impl PartialOrd<Version> for Version

impl Ord for Version

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

Auto Trait Implementations

impl Send for Version

impl Unpin for Version

impl Sync for Version

impl UnwindSafe for Version

impl RefUnwindSafe for Version

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]