#[repr(u32)]pub enum Sampled {
Unknown = 0,
Yes = 1,
No = 2,
}
Expand description
Whether or not the image will be accessed in combination with a sampler.
Variants§
Unknown = 0
Indicates that it is not known ahead of time whether the image will use a sampler or not.
Yes = 1
The image will be used with a sampler.
No = 2
The image will not be used with a sampler.
Trait Implementations§
source§impl PartialEq for Sampled
impl PartialEq for Sampled
impl Copy for Sampled
impl Eq for Sampled
impl StructuralPartialEq for Sampled
Auto Trait Implementations§
impl Freeze for Sampled
impl RefUnwindSafe for Sampled
impl Send for Sampled
impl Sync for Sampled
impl Unpin for Sampled
impl UnwindSafe for Sampled
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