[][src]Struct rendology::shader::Core

pub struct Core<P, I, V> {
    pub vertex: VertexCore<P, I, V>,
    pub fragment: FragmentCore<P>,
}

Fields

vertex: VertexCore<P, I, V>fragment: FragmentCore<P>

Methods

impl<P, I, V> Core<P, I, V> where
    P: Clone,
    I: Clone,
    V: Clone
[src]

impl<P, I, V> Core<P, I, V> where
    P: UniformInput + Clone,
    I: UniformInput + Clone,
    V: Vertex
[src]

pub fn build_program<F: Facade>(
    &self,
    facade: &F,
    mode: InstancingMode
) -> Result<Program, ProgramCreationError>
[src]

Trait Implementations

impl<P: Clone, I: Clone, V: Clone> Clone for Core<P, I, V>[src]

impl<P: Eq, I: Eq, V: Eq> Eq for Core<P, I, V>[src]

impl<P: PartialEq, I: PartialEq, V: PartialEq> PartialEq<Core<P, I, V>> for Core<P, I, V>[src]

impl<P: Debug, I: Debug, V: Debug> Debug for Core<P, I, V>[src]

impl<P, I, V> StructuralPartialEq for Core<P, I, V>[src]

impl<P, I, V> StructuralEq for Core<P, I, V>[src]

Auto Trait Implementations

impl<P, I, V> Send for Core<P, I, V> where
    I: Send,
    P: Send,
    V: Send

impl<P, I, V> Sync for Core<P, I, V> where
    I: Sync,
    P: Sync,
    V: Sync

impl<P, I, V> Unpin for Core<P, I, V> where
    I: Unpin,
    P: Unpin,
    V: Unpin

impl<P, I, V> UnwindSafe for Core<P, I, V> where
    I: UnwindSafe,
    P: UnwindSafe,
    V: UnwindSafe

impl<P, I, V> RefUnwindSafe for Core<P, I, V> where
    I: RefUnwindSafe,
    P: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,