Enum wgpu_core::command::TransferError[][src]

pub enum TransferError {
Show 24 variants InvalidBuffer(BufferId), InvalidTexture(TextureId), SameSourceDestinationBuffer, MissingCopySrcUsageFlag, MissingCopyDstUsageFlag(Option<BufferId>, Option<TextureId>), 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, }, UnalignedBufferOffset(BufferAddress), UnalignedCopySize(BufferAddress), UnalignedCopyWidth, UnalignedCopyHeight, UnalignedCopyOriginX, UnalignedCopyOriginY, UnalignedBytesPerRow, UnspecifiedBytesPerRow, UnspecifiedRowsPerImage, InvalidBytesPerRow, InvalidCopySize, InvalidRowsPerImage, MismatchedAspects, CopyFromForbiddenTextureFormat(TextureFormat), CopyToForbiddenTextureFormat(TextureFormat),
}
Expand description

Error encountered while attempting a data transfer.

Variants

InvalidBuffer(BufferId)

Tuple Fields of InvalidBuffer

0: BufferId
InvalidTexture(TextureId)

Tuple Fields of InvalidTexture

0: TextureId
SameSourceDestinationBuffer
MissingCopySrcUsageFlag
MissingCopyDstUsageFlag(Option<BufferId>, Option<TextureId>)

Tuple Fields of MissingCopyDstUsageFlag

0: Option<BufferId>1: Option<TextureId>
BufferOverrun

Fields of BufferOverrun

start_offset: BufferAddressend_offset: BufferAddressbuffer_size: BufferAddressside: CopySide
TextureOverrun

Fields of TextureOverrun

start_offset: u32end_offset: u32texture_size: u32dimension: TextureErrorDimensionside: CopySide
InvalidTextureAspect

Fields of InvalidTextureAspect

format: TextureFormataspect: TextureAspect
InvalidTextureMipLevel

Fields of InvalidTextureMipLevel

level: u32total: u32
UnalignedBufferOffset(BufferAddress)

Tuple Fields of UnalignedBufferOffset

0: BufferAddress
UnalignedCopySize(BufferAddress)

Tuple Fields of UnalignedCopySize

0: BufferAddress
UnalignedCopyWidth
UnalignedCopyHeight
UnalignedCopyOriginX
UnalignedCopyOriginY
UnalignedBytesPerRow
UnspecifiedBytesPerRow
UnspecifiedRowsPerImage
InvalidBytesPerRow
InvalidCopySize
InvalidRowsPerImage
MismatchedAspects
CopyFromForbiddenTextureFormat(TextureFormat)

Tuple Fields of CopyFromForbiddenTextureFormat

0: TextureFormat
CopyToForbiddenTextureFormat(TextureFormat)

Tuple Fields of CopyToForbiddenTextureFormat

0: TextureFormat

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.