pub struct Attachment<'a, T: DynTextureView + ?Sized> {
pub view: &'a T,
pub usage: TextureUses,
}
Fields§
§view: &'a T
§usage: TextureUses
Contains either a single mutating usage as a target, or a valid combination of read-only usages.
Implementations§
Source§impl<'a> Attachment<'a, dyn DynTextureView>
impl<'a> Attachment<'a, dyn DynTextureView>
pub fn expect_downcast<B: DynTextureView>(&self) -> Attachment<'a, B>
Trait Implementations§
Source§impl<'a, T: Clone + DynTextureView + ?Sized> Clone for Attachment<'a, T>
impl<'a, T: Clone + DynTextureView + ?Sized> Clone for Attachment<'a, T>
Source§fn clone(&self) -> Attachment<'a, T>
fn clone(&self) -> Attachment<'a, T>
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 moreAuto Trait Implementations§
impl<'a, T> Freeze for Attachment<'a, T>where
T: ?Sized,
impl<'a, T> RefUnwindSafe for Attachment<'a, T>where
T: RefUnwindSafe + ?Sized,
impl<'a, T> Send for Attachment<'a, T>
impl<'a, T> Sync for Attachment<'a, T>
impl<'a, T> Unpin for Attachment<'a, T>where
T: ?Sized,
impl<'a, T> UnwindSafe for Attachment<'a, T>where
T: RefUnwindSafe + ?Sized,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)