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: SElement name.
shader_offset: ElemOffsetElement byte offset in the shader-side constant buffer.
code_offset: ElemOffsetElement byte offset in the code-side constant buffer.
Element format mismatch.
Fields of Format
name: SElement name.
shader_format: ConstFormatElement format in the shader-side constant buffer.
code_format: ConstFormatElement format in the code-side constant buffer.
Trait Implementations
impl<S: Clone> Clone for ElementError<S>[src]
fn clone(&self) -> ElementError<S>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[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]
fn description(&self) -> &str[src]
pub fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
pub fn backtrace(&self) -> Option<&Backtrace>[src]
pub fn cause(&self) -> Option<&dyn Error>1.0.0[src]
impl<'a> From<ElementError<&'a str>> for ElementError<String>[src]
fn from(other: ElementError<&'a str>) -> ElementError<String>[src]
impl<S: PartialEq> PartialEq<ElementError<S>> for ElementError<S>[src]
fn eq(&self, other: &ElementError<S>) -> bool[src]
fn ne(&self, other: &ElementError<S>) -> bool[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,
pub fn borrow_mut(&mut self) -> &mut T[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
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>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,