Enum spirv_std::image::Multisampled
source · #[repr(u32)]pub enum Multisampled {
False = 0,
True = 1,
}
Expand description
Whether the image uses arrayed content.
Variants§
False = 0
The image contains single-sampled content.
True = 1
The image contains multisampled content.
Trait Implementations§
source§impl Clone for Multisampled
impl Clone for Multisampled
source§fn clone(&self) -> Multisampled
fn clone(&self) -> Multisampled
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 From<bool> for Multisampled
impl From<bool> for Multisampled
source§fn from(val: bool) -> Multisampled
fn from(val: bool) -> Multisampled
Converts to this type from the input type.
source§impl PartialEq for Multisampled
impl PartialEq for Multisampled
source§fn eq(&self, other: &Multisampled) -> bool
fn eq(&self, other: &Multisampled) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Multisampled
impl Eq for Multisampled
impl StructuralPartialEq for Multisampled
Auto Trait Implementations§
impl Freeze for Multisampled
impl RefUnwindSafe for Multisampled
impl Send for Multisampled
impl Sync for Multisampled
impl Unpin for Multisampled
impl UnwindSafe for Multisampled
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