pub struct EscapeInfo {
pub escaped: HashSet<ValueId>,
}Expand description
Result of escape analysis.
Fields§
§escaped: HashSet<ValueId>Values that escape the local scope.
Implementations§
Source§impl EscapeInfo
impl EscapeInfo
Auto Trait Implementations§
impl Freeze for EscapeInfo
impl RefUnwindSafe for EscapeInfo
impl Send for EscapeInfo
impl Sync for EscapeInfo
impl Unpin for EscapeInfo
impl UnsafeUnpin for EscapeInfo
impl UnwindSafe for EscapeInfo
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