pub struct LowerFromSpvPtrs<'a> { /* private fields */ }
Expand description
Context for lowering SPIR-V OpTypePointer
s to QPtr
s.
See also passes::qptr::lower_from_spv_ptrs
(which drives this).
Implementations§
Source§impl<'a> LowerFromSpvPtrs<'a>
impl<'a> LowerFromSpvPtrs<'a>
pub fn new(cx: Rc<Context>, layout_config: &'a LayoutConfig) -> Self
pub fn lower_global_var(&self, global_var_decl: &mut GlobalVarDecl)
pub fn lower_func(&self, func_decl: &mut FuncDecl)
Auto Trait Implementations§
impl<'a> !Freeze for LowerFromSpvPtrs<'a>
impl<'a> !RefUnwindSafe for LowerFromSpvPtrs<'a>
impl<'a> !Send for LowerFromSpvPtrs<'a>
impl<'a> !Sync for LowerFromSpvPtrs<'a>
impl<'a> Unpin for LowerFromSpvPtrs<'a>
impl<'a> !UnwindSafe for LowerFromSpvPtrs<'a>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more