Struct sierra::Hlsl[][src]

pub struct Hlsl { /* fields omitted */ }

Valid HLSL shader code.

Implementations

impl Hlsl[src]

pub fn new(string: impl Into<Box<str>>) -> Self[src]

Wraps string that must contain valid HLSL shader code.

FIXME: Actually check validity.

Trait Implementations

impl Clone for Hlsl[src]

impl Debug for Hlsl[src]

impl Eq for Hlsl[src]

impl From<Hlsl> for ShaderModuleInfo[src]

impl PartialEq<Hlsl> for Hlsl[src]

impl StructuralEq for Hlsl[src]

impl StructuralPartialEq for Hlsl[src]

Auto Trait Implementations

impl RefUnwindSafe for Hlsl

impl Send for Hlsl

impl Sync for Hlsl

impl Unpin for Hlsl

impl UnwindSafe for Hlsl

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> Instrument 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.