Enum wgpu_core::command::TransferError
source · #[non_exhaustive]pub enum TransferError {
Show 31 variants
SameSourceDestinationBuffer,
MissingBufferUsage(MissingBufferUsageError),
MissingTextureUsage(MissingTextureUsageError),
BufferOverrun {
start_offset: BufferAddress,
end_offset: BufferAddress,
buffer_size: BufferAddress,
side: CopySide,
},
TextureOverrun {
start_offset: u32,
end_offset: u32,
texture_size: u32,
dimension: TextureErrorDimension,
side: CopySide,
},
InvalidTextureAspect {
format: TextureFormat,
aspect: TextureAspect,
},
InvalidTextureMipLevel {
level: u32,
total: u32,
},
InvalidDimensionExternal,
UnalignedBufferOffset(BufferAddress),
UnalignedCopySize(BufferAddress),
UnalignedCopyWidth,
UnalignedCopyHeight,
UnalignedCopyOriginX,
UnalignedCopyOriginY,
UnalignedBytesPerRow,
UnspecifiedBytesPerRow,
UnspecifiedRowsPerImage,
InvalidBytesPerRow,
InvalidCopySize,
InvalidRowsPerImage,
CopySrcMissingAspects,
CopyDstMissingAspects,
CopyAspectNotOne,
CopyFromForbiddenTextureFormat {
format: TextureFormat,
aspect: TextureAspect,
},
CopyToForbiddenTextureFormat {
format: TextureFormat,
aspect: TextureAspect,
},
ExternalCopyToForbiddenTextureFormat(TextureFormat),
TextureFormatsNotCopyCompatible {
src_format: TextureFormat,
dst_format: TextureFormat,
},
MemoryInitFailure(ClearError),
MissingDownlevelFlags(MissingDownlevelFlags),
InvalidSampleCount {
sample_count: u32,
},
InvalidMipLevel {
requested: u32,
count: u32,
},
}
Expand description
Error encountered while attempting a data transfer.
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.
SameSourceDestinationBuffer
MissingBufferUsage(MissingBufferUsageError)
MissingTextureUsage(MissingTextureUsageError)
BufferOverrun
TextureOverrun
Fields
§
dimension: TextureErrorDimension
InvalidTextureAspect
InvalidTextureMipLevel
InvalidDimensionExternal
UnalignedBufferOffset(BufferAddress)
UnalignedCopySize(BufferAddress)
UnalignedCopyWidth
UnalignedCopyHeight
UnalignedCopyOriginX
UnalignedCopyOriginY
UnalignedBytesPerRow
UnspecifiedBytesPerRow
UnspecifiedRowsPerImage
InvalidBytesPerRow
InvalidCopySize
InvalidRowsPerImage
CopySrcMissingAspects
CopyDstMissingAspects
CopyAspectNotOne
CopyFromForbiddenTextureFormat
CopyToForbiddenTextureFormat
ExternalCopyToForbiddenTextureFormat(TextureFormat)
TextureFormatsNotCopyCompatible
MemoryInitFailure(ClearError)
MissingDownlevelFlags(MissingDownlevelFlags)
InvalidSampleCount
InvalidMipLevel
Trait Implementations§
source§impl Clone for TransferError
impl Clone for TransferError
source§fn clone(&self) -> TransferError
fn clone(&self) -> TransferError
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 TransferError
impl Debug for TransferError
source§impl Display for TransferError
impl Display for TransferError
source§impl Error for TransferError
impl Error for TransferError
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<ClearError> for TransferError
impl From<ClearError> for TransferError
source§fn from(source: ClearError) -> Self
fn from(source: ClearError) -> Self
Converts to this type from the input type.
source§impl From<MissingBufferUsageError> for TransferError
impl From<MissingBufferUsageError> for TransferError
source§fn from(source: MissingBufferUsageError) -> Self
fn from(source: MissingBufferUsageError) -> Self
Converts to this type from the input type.
source§impl From<MissingDownlevelFlags> for TransferError
impl From<MissingDownlevelFlags> for TransferError
source§fn from(source: MissingDownlevelFlags) -> Self
fn from(source: MissingDownlevelFlags) -> Self
Converts to this type from the input type.
source§impl From<MissingTextureUsageError> for TransferError
impl From<MissingTextureUsageError> for TransferError
source§fn from(source: MissingTextureUsageError) -> Self
fn from(source: MissingTextureUsageError) -> Self
Converts to this type from the input type.
source§impl From<TransferError> for CopyError
impl From<TransferError> for CopyError
source§fn from(source: TransferError) -> Self
fn from(source: TransferError) -> Self
Converts to this type from the input type.
source§impl From<TransferError> for QueueWriteError
impl From<TransferError> for QueueWriteError
source§fn from(source: TransferError) -> Self
fn from(source: TransferError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransferError
impl RefUnwindSafe for TransferError
impl Send for TransferError
impl Sync for TransferError
impl Unpin for TransferError
impl UnwindSafe for TransferError
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