pub struct SnapshotTextureView {
pub id: String,
pub stable_key: Option<String>,
pub resource_id: String,
pub label: Option<String>,
pub format: String,
pub dimension: String,
pub aspect: String,
pub base_mip_level: u64,
pub mip_level_count: u64,
pub base_array_layer: u64,
pub array_layer_count: u64,
pub swizzle: String,
}Expand description
Fully normalized texture-view descriptor referenced by captured accesses.
Fields§
§id: String§stable_key: Option<String>§resource_id: String§label: Option<String>§format: String§dimension: String§aspect: String§base_mip_level: u64§mip_level_count: u64§base_array_layer: u64§array_layer_count: u64§swizzle: StringTrait Implementations§
Source§impl Clone for SnapshotTextureView
impl Clone for SnapshotTextureView
Source§fn clone(&self) -> SnapshotTextureView
fn clone(&self) -> SnapshotTextureView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SnapshotTextureView
impl Debug for SnapshotTextureView
Source§impl<'de> Deserialize<'de> for SnapshotTextureView
impl<'de> Deserialize<'de> for SnapshotTextureView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SnapshotTextureView
Source§impl PartialEq for SnapshotTextureView
impl PartialEq for SnapshotTextureView
Source§impl Serialize for SnapshotTextureView
impl Serialize for SnapshotTextureView
impl StructuralPartialEq for SnapshotTextureView
Auto Trait Implementations§
impl Freeze for SnapshotTextureView
impl RefUnwindSafe for SnapshotTextureView
impl Send for SnapshotTextureView
impl Sync for SnapshotTextureView
impl Unpin for SnapshotTextureView
impl UnsafeUnpin for SnapshotTextureView
impl UnwindSafe for SnapshotTextureView
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