Enum gfx::pso::ElementError [−][src]
pub enum ElementError<S> { NotFound(S), Offset { name: S, shader_offset: ElemOffset, code_offset: ElemOffset, }, Format { name: S, shader_format: ConstFormat, code_format: ConstFormat, }, }
Error matching an element inside the constant buffer.
Variants
Element not found.
Element offset mismatch.
Fields of Offset
name: S
Element name.
shader_offset: ElemOffset
Element byte offset in the shader-side constant buffer.
code_offset: ElemOffset
Element byte offset in the code-side constant buffer.
Element format mismatch.
Fields of Format
name: S
Element name.
shader_format: ConstFormat
Element format in the shader-side constant buffer.
code_format: ConstFormat
Element format in the code-side constant buffer.
Trait Implementations
impl<S: Clone> Clone for ElementError<S>
[src][+]
impl<S: Debug> Debug for ElementError<S>
[src][+]
impl<S: Debug + Display> Display for ElementError<S>
[src][+]
impl<S: Debug + Display> Error for ElementError<S>
[src][+]
impl<'a> From<ElementError<&'a str>> for ElementError<String>
[src][+]
impl<S: PartialEq> PartialEq<ElementError<S>> for ElementError<S>
[src][+]
impl<S> StructuralPartialEq for ElementError<S>
[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for ElementError<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for ElementError<S> where
S: Send,
S: Send,
impl<S> Sync for ElementError<S> where
S: Sync,
S: Sync,
impl<S> Unpin for ElementError<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for ElementError<S> where
S: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,