pub struct PlaceRef<'tcx, V> {
pub llval: V,
pub llextra: Option<V>,
pub layout: TyAndLayout<'tcx>,
pub align: Align,
}
Fields
llval: V
A pointer to the contents of the place.
llextra: Option<V>
This place’s extra data if it is unsized, or None
if null.
layout: TyAndLayout<'tcx>
The monomorphized type of this place, including variant information.
align: Align
The alignment we know for this place.
Implementations
sourceimpl<'a, 'tcx, V: CodegenObject> PlaceRef<'tcx, V>
impl<'a, 'tcx, V: CodegenObject> PlaceRef<'tcx, V>
pub fn new_sized(llval: V, layout: TyAndLayout<'tcx>) -> PlaceRef<'tcx, V>
pub fn new_sized_aligned(
llval: V,
layout: TyAndLayout<'tcx>,
align: Align
) -> PlaceRef<'tcx, V>
pub fn alloca<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
bx: &mut Bx,
layout: TyAndLayout<'tcx>
) -> Self
sourcepub fn alloca_unsized_indirect<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
bx: &mut Bx,
layout: TyAndLayout<'tcx>
) -> Self
pub fn alloca_unsized_indirect<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
bx: &mut Bx,
layout: TyAndLayout<'tcx>
) -> Self
Returns a place for an indirect reference to an unsized place.
pub fn len<Cx: ConstMethods<'tcx, Value = V>>(&self, cx: &Cx) -> V
sourceimpl<'a, 'tcx, V: CodegenObject> PlaceRef<'tcx, V>
impl<'a, 'tcx, V: CodegenObject> PlaceRef<'tcx, V>
sourcepub fn project_field<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
self,
bx: &mut Bx,
ix: usize
) -> Self
pub fn project_field<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
self,
bx: &mut Bx,
ix: usize
) -> Self
Access a field, at a point when the value’s case is known.
sourcepub fn codegen_get_discr<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
self,
bx: &mut Bx,
cast_to: Ty<'tcx>
) -> V
pub fn codegen_get_discr<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
self,
bx: &mut Bx,
cast_to: Ty<'tcx>
) -> V
Obtain the actual discriminant of a value.
sourcepub fn codegen_set_discr<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
&self,
bx: &mut Bx,
variant_index: VariantIdx
)
pub fn codegen_set_discr<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
&self,
bx: &mut Bx,
variant_index: VariantIdx
)
Sets the discriminant for a new value of the given case of the given representation.
pub fn project_index<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
&self,
bx: &mut Bx,
llindex: V
) -> Self
pub fn project_downcast<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
&self,
bx: &mut Bx,
variant_index: VariantIdx
) -> Self
pub fn storage_live<Bx: BuilderMethods<'a, 'tcx, Value = V>>(&self, bx: &mut Bx)
pub fn storage_dead<Bx: BuilderMethods<'a, 'tcx, Value = V>>(&self, bx: &mut Bx)
Trait Implementations
impl<'tcx, V: Copy> Copy for PlaceRef<'tcx, V>
Auto Trait Implementations
impl<'tcx, V> !RefUnwindSafe for PlaceRef<'tcx, V>
impl<'tcx, V> Send for PlaceRef<'tcx, V>where
V: Send,
impl<'tcx, V> Sync for PlaceRef<'tcx, V>where
V: Sync,
impl<'tcx, V> Unpin for PlaceRef<'tcx, V>where
V: Unpin,
impl<'tcx, V> !UnwindSafe for PlaceRef<'tcx, V>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
Layout
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.