pub struct PipelineStackScope { /* private fields */ }Expand description
RAII guard returned by enter_pipeline_scope. Dropping it discards the
stack frame it opened — including any value left on it by an unmatched
push — and restores the enclosing frame as current.
Trait Implementations§
Source§impl Debug for PipelineStackScope
impl Debug for PipelineStackScope
Source§impl Drop for PipelineStackScope
impl Drop for PipelineStackScope
Auto Trait Implementations§
impl !Send for PipelineStackScope
impl !Sync for PipelineStackScope
impl Freeze for PipelineStackScope
impl RefUnwindSafe for PipelineStackScope
impl Unpin for PipelineStackScope
impl UnsafeUnpin for PipelineStackScope
impl UnwindSafe for PipelineStackScope
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