pub enum ViewType {
AccelerationStructure,
Image(ImageViewInfo),
Buffer(Range<DeviceSize>),
}Variants
AccelerationStructure
Image(ImageViewInfo)
Buffer(Range<DeviceSize>)
Trait Implementations
sourceimpl From<BufferSubresource> for ViewType
impl From<BufferSubresource> for ViewType
sourcefn from(subresource: BufferSubresource) -> Self
fn from(subresource: BufferSubresource) -> Self
Converts to this type from the input type.
sourceimpl From<ImageViewInfo> for ViewType
impl From<ImageViewInfo> for ViewType
sourcefn from(info: ImageViewInfo) -> Self
fn from(info: ImageViewInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ViewType
impl Send for ViewType
impl Sync for ViewType
impl Unpin for ViewType
impl UnwindSafe for ViewType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more