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