[][src]Enum yy_boss::ShaderKind

pub enum ShaderKind {
    Vertex,
    Frag,
}

Variants

Vertex
Frag

Implementations

impl ShaderKind[src]

pub fn file_ending(&self) -> &'static str[src]

pub fn iter() -> impl IntoIterator<Item = ShaderKind>[src]

Trait Implementations

impl Clone for ShaderKind[src]

impl Copy for ShaderKind[src]

impl Debug for ShaderKind[src]

impl Eq for ShaderKind[src]

impl Hash for ShaderKind[src]

impl Index<ShaderKind> for ShaderFile[src]

type Output = String

The returned type after indexing.

impl IndexMut<ShaderKind> for ShaderFile[src]

impl IntoEnumIterator for ShaderKind[src]

impl Ord for ShaderKind[src]

impl PartialEq<ShaderKind> for ShaderKind[src]

impl PartialOrd<ShaderKind> for ShaderKind[src]

impl StructuralEq for ShaderKind[src]

impl StructuralPartialEq for ShaderKind[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,