Enum wgpu_core::resource::CreateSamplerError
source · #[non_exhaustive]pub enum CreateSamplerError {
Device(DeviceError),
InvalidLodMinClamp(f32),
InvalidLodMaxClamp {
lod_min_clamp: f32,
lod_max_clamp: f32,
},
InvalidAnisotropy(u16),
InvalidFilterModeWithAnisotropy {
filter_type: SamplerFilterErrorType,
filter_mode: FilterMode,
anisotropic_clamp: u16,
},
TooManyObjects,
MissingFeatures(MissingFeatures),
}
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)
InvalidLodMinClamp(f32)
InvalidLodMaxClamp
InvalidAnisotropy(u16)
InvalidFilterModeWithAnisotropy
TooManyObjects
MissingFeatures(MissingFeatures)
AddressMode::ClampToBorder requires feature ADDRESS_MODE_CLAMP_TO_BORDER.
Trait Implementations§
source§impl Clone for CreateSamplerError
impl Clone for CreateSamplerError
source§fn clone(&self) -> CreateSamplerError
fn clone(&self) -> CreateSamplerError
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 CreateSamplerError
impl Debug for CreateSamplerError
source§impl Display for CreateSamplerError
impl Display for CreateSamplerError
source§impl Error for CreateSamplerError
impl Error for CreateSamplerError
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<DeviceError> for CreateSamplerError
impl From<DeviceError> for CreateSamplerError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<MissingFeatures> for CreateSamplerError
impl From<MissingFeatures> for CreateSamplerError
source§fn from(source: MissingFeatures) -> Self
fn from(source: MissingFeatures) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateSamplerError
impl RefUnwindSafe for CreateSamplerError
impl Send for CreateSamplerError
impl Sync for CreateSamplerError
impl Unpin for CreateSamplerError
impl UnwindSafe for CreateSamplerError
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