Struct wgpu_profiler::scope::OwningScope
source · [−]pub struct OwningScope<'a, W: ProfilerCommandRecorder> { /* private fields */ }Expand description
Scope that takes ownership of the encoder/pass. Calls end_scope on drop.
Implementations
sourceimpl<'a, W: ProfilerCommandRecorder> OwningScope<'a, W>
impl<'a, W: ProfilerCommandRecorder> OwningScope<'a, W>
sourceimpl<'a> OwningScope<'a, CommandEncoder>
impl<'a> OwningScope<'a, CommandEncoder>
sourcepub fn scoped_render_pass<'b>(
&'b mut self,
label: &str,
device: &Device,
pass_descriptor: &RenderPassDescriptor<'b, '_>
) -> OwningScope<'b, RenderPass<'b>>
pub fn scoped_render_pass<'b>(
&'b mut self,
label: &str,
device: &Device,
pass_descriptor: &RenderPassDescriptor<'b, '_>
) -> OwningScope<'b, RenderPass<'b>>
Start a render pass wrapped in an OwningScope.
sourcepub fn scoped_compute_pass(
&mut self,
label: &str,
device: &Device,
pass_descriptor: &ComputePassDescriptor<'_>
) -> OwningScope<'_, ComputePass<'_>>
pub fn scoped_compute_pass(
&mut self,
label: &str,
device: &Device,
pass_descriptor: &ComputePassDescriptor<'_>
) -> OwningScope<'_, ComputePass<'_>>
Start a compute pass wrapped in a OwningScope.
Trait Implementations
sourceimpl<'a, W: ProfilerCommandRecorder> Deref for OwningScope<'a, W>
impl<'a, W: ProfilerCommandRecorder> Deref for OwningScope<'a, W>
sourceimpl<'a, W: ProfilerCommandRecorder> DerefMut for OwningScope<'a, W>
impl<'a, W: ProfilerCommandRecorder> DerefMut for OwningScope<'a, W>
sourceimpl<'a, W: ProfilerCommandRecorder> Drop for OwningScope<'a, W>
impl<'a, W: ProfilerCommandRecorder> Drop for OwningScope<'a, W>
Auto Trait Implementations
impl<'a, W> !RefUnwindSafe for OwningScope<'a, W>
impl<'a, W> Send for OwningScope<'a, W> where
W: Send,
impl<'a, W> Sync for OwningScope<'a, W> where
W: Sync,
impl<'a, W> Unpin for OwningScope<'a, W> where
W: Unpin,
impl<'a, W> !UnwindSafe for OwningScope<'a, W>
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