Struct rustc_mir_dataflow::value_analysis::PlaceInfo
source · struct PlaceInfo {
value_index: Option<ValueIndex>,
proj_elem: Option<TrackElem>,
first_child: Option<PlaceIndex>,
next_sibling: Option<PlaceIndex>,
}
Expand description
This is the information tracked for every PlaceIndex
and is stored by Map
.
Together, first_child
and next_sibling
form an intrusive linked list, which is used to
model a tree structure (a replacement for a member like children: Vec<PlaceIndex>
).
Fields§
§value_index: Option<ValueIndex>
We store a ValueIndex
if and only if the placed is tracked by the analysis.
proj_elem: Option<TrackElem>
The projection used to go from parent to this node (only None for root).
first_child: Option<PlaceIndex>
The left-most child.
next_sibling: Option<PlaceIndex>
Index of the sibling to the right of this node.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for PlaceInfo
impl Send for PlaceInfo
impl Sync for PlaceInfo
impl Unpin for PlaceInfo
impl UnwindSafe for PlaceInfo
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 20 bytes