Enum wgpu_core::resource::BufferAccessError
source · #[non_exhaustive]pub enum BufferAccessError {
Show 15 variants
Device(DeviceError),
Failed,
Invalid,
Destroyed,
AlreadyMapped,
MapAlreadyPending,
MissingBufferUsage(MissingBufferUsageError),
NotMapped,
UnalignedRange,
UnalignedOffset {
offset: BufferAddress,
},
UnalignedRangeSize {
range_size: BufferAddress,
},
OutOfBoundsUnderrun {
index: BufferAddress,
min: BufferAddress,
},
OutOfBoundsOverrun {
index: BufferAddress,
max: BufferAddress,
},
NegativeRange {
start: BufferAddress,
end: BufferAddress,
},
MapAborted,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Device(DeviceError)
Failed
Invalid
Destroyed
AlreadyMapped
MapAlreadyPending
MissingBufferUsage(MissingBufferUsageError)
NotMapped
UnalignedRange
UnalignedOffset
Fields
§
offset: BufferAddress
UnalignedRangeSize
Fields
§
range_size: BufferAddress
OutOfBoundsUnderrun
OutOfBoundsOverrun
NegativeRange
MapAborted
Trait Implementations§
source§impl Clone for BufferAccessError
impl Clone for BufferAccessError
source§fn clone(&self) -> BufferAccessError
fn clone(&self) -> BufferAccessError
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 BufferAccessError
impl Debug for BufferAccessError
source§impl Display for BufferAccessError
impl Display for BufferAccessError
source§impl Error for BufferAccessError
impl Error for BufferAccessError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<BufferAccessError> for CreateBufferError
impl From<BufferAccessError> for CreateBufferError
source§fn from(source: BufferAccessError) -> Self
fn from(source: BufferAccessError) -> Self
Converts to this type from the input type.
source§impl From<BufferAccessError> for QueueSubmitError
impl From<BufferAccessError> for QueueSubmitError
source§fn from(source: BufferAccessError) -> Self
fn from(source: BufferAccessError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for BufferAccessError
impl From<DeviceError> for BufferAccessError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<MissingBufferUsageError> for BufferAccessError
impl From<MissingBufferUsageError> for BufferAccessError
source§fn from(source: MissingBufferUsageError) -> Self
fn from(source: MissingBufferUsageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BufferAccessError
impl RefUnwindSafe for BufferAccessError
impl Send for BufferAccessError
impl Sync for BufferAccessError
impl Unpin for BufferAccessError
impl UnwindSafe for BufferAccessError
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