pub struct CopyExternalImageDestInfo<T> {
    pub texture: T,
    pub mip_level: u32,
    pub origin: Origin3d,
    pub aspect: TextureAspect,
    pub color_space: PredefinedColorSpace,
    pub premultiplied_alpha: bool,
}Expand description
View of a texture which can be used to copy to a texture, including color space and alpha premultiplication information.
Corresponds to WebGPU GPUCopyExternalImageDestInfo.
Fields§
§texture: TThe texture to be copied to/from.
mip_level: u32The target mip level of the texture.
origin: Origin3dThe base texel of the texture in the selected mip_level.
aspect: TextureAspectThe copy aspect.
color_space: PredefinedColorSpaceThe color space of this texture.
premultiplied_alpha: boolThe premultiplication of this texture
Implementations§
Source§impl<T> CopyExternalImageDestInfo<T>
 
impl<T> CopyExternalImageDestInfo<T>
Sourcepub fn to_untagged(self) -> TexelCopyTextureInfo<T>
 
pub fn to_untagged(self) -> TexelCopyTextureInfo<T>
Removes the colorspace information from the type.
Trait Implementations§
Source§impl<T: Clone> Clone for CopyExternalImageDestInfo<T>
 
impl<T: Clone> Clone for CopyExternalImageDestInfo<T>
Source§fn clone(&self) -> CopyExternalImageDestInfo<T>
 
fn clone(&self) -> CopyExternalImageDestInfo<T>
Returns a duplicate 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<T: Debug> Debug for CopyExternalImageDestInfo<T>
 
impl<T: Debug> Debug for CopyExternalImageDestInfo<T>
Source§impl<'de, T> Deserialize<'de> for CopyExternalImageDestInfo<T>where
    T: Deserialize<'de>,
 
impl<'de, T> Deserialize<'de> for CopyExternalImageDestInfo<T>where
    T: Deserialize<'de>,
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
Source§impl<T> Serialize for CopyExternalImageDestInfo<T>where
    T: Serialize,
 
impl<T> Serialize for CopyExternalImageDestInfo<T>where
    T: Serialize,
impl<T: Copy> Copy for CopyExternalImageDestInfo<T>
Auto Trait Implementations§
impl<T> Freeze for CopyExternalImageDestInfo<T>where
    T: Freeze,
impl<T> RefUnwindSafe for CopyExternalImageDestInfo<T>where
    T: RefUnwindSafe,
impl<T> Send for CopyExternalImageDestInfo<T>where
    T: Send,
impl<T> Sync for CopyExternalImageDestInfo<T>where
    T: Sync,
impl<T> Unpin for CopyExternalImageDestInfo<T>where
    T: Unpin,
impl<T> UnwindSafe for CopyExternalImageDestInfo<T>where
    T: UnwindSafe,
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