Enum gfx_core::texture::CreationError [−][src]
pub enum CreationError {
Format(SurfaceType, Option<ChannelType>),
Kind,
Samples(AaMode),
Size(Size),
Data(usize),
Usage(Usage),
Mipmap,
Level(Level),
}Pure texture object creation error.
Variants
Format(SurfaceType, Option<ChannelType>)Failed to map a given format to the device.
KindThe kind doesn't support a particular operation.
Samples(AaMode)Failed to map a given multisampled kind to the device.
Size(Size)Unsupported size in one of the dimensions.
Data(usize)The given data has a different size than the target texture slice.
Usage(Usage)The mentioned usage mode is not supported
MipmapThe requested mipmap creation parameter is unsupported.
Level(Level)The requested mipmap level count does not match the provided data.
Trait Implementations
impl From<CreationError> for CombinedError[src]
impl From<CreationError> for CombinedErrorfn from(e: CreationError) -> CombinedError[src]
fn from(e: CreationError) -> CombinedErrorPerforms the conversion.
impl Clone for CreationError[src]
impl Clone for CreationErrorfn clone(&self) -> CreationError[src]
fn clone(&self) -> CreationErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for CreationError[src]
impl Copy for CreationErrorimpl Debug for CreationError[src]
impl Debug for CreationErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for CreationError[src]
impl PartialEq for CreationErrorfn eq(&self, other: &CreationError) -> bool[src]
fn eq(&self, other: &CreationError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CreationError) -> bool[src]
fn ne(&self, other: &CreationError) -> boolThis method tests for !=.
impl Display for CreationError[src]
impl Display for CreationErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for CreationError[src]
impl Error for CreationErrorAuto Trait Implementations
impl Send for CreationError
impl Send for CreationErrorimpl Sync for CreationError
impl Sync for CreationError