pub struct BindGroupIndexOutOfRange {
pub index: u32,
pub max: u32,
}
Fields§
§index: u32
§max: u32
Trait Implementations§
Source§impl Clone for BindGroupIndexOutOfRange
impl Clone for BindGroupIndexOutOfRange
Source§fn clone(&self) -> BindGroupIndexOutOfRange
fn clone(&self) -> BindGroupIndexOutOfRange
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BindGroupIndexOutOfRange
impl Debug for BindGroupIndexOutOfRange
Source§impl Display for BindGroupIndexOutOfRange
impl Display for BindGroupIndexOutOfRange
Source§impl Error for BindGroupIndexOutOfRange
impl Error for BindGroupIndexOutOfRange
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<BindGroupIndexOutOfRange> for ComputePassErrorInner
impl From<BindGroupIndexOutOfRange> for ComputePassErrorInner
Source§fn from(source: BindGroupIndexOutOfRange) -> Self
fn from(source: BindGroupIndexOutOfRange) -> Self
Converts to this type from the input type.
Source§impl From<BindGroupIndexOutOfRange> for RenderCommandError
impl From<BindGroupIndexOutOfRange> for RenderCommandError
Source§fn from(source: BindGroupIndexOutOfRange) -> Self
fn from(source: BindGroupIndexOutOfRange) -> Self
Converts to this type from the input type.
Source§impl From<BindGroupIndexOutOfRange> for RenderPassErrorInner
impl From<BindGroupIndexOutOfRange> for RenderPassErrorInner
Source§fn from(error: BindGroupIndexOutOfRange) -> Self
fn from(error: BindGroupIndexOutOfRange) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BindGroupIndexOutOfRange
impl RefUnwindSafe for BindGroupIndexOutOfRange
impl Send for BindGroupIndexOutOfRange
impl Sync for BindGroupIndexOutOfRange
impl Unpin for BindGroupIndexOutOfRange
impl UnwindSafe for BindGroupIndexOutOfRange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more