Struct flowistry_pdg::rustc::mir::mono::MonoItemData
source · pub struct MonoItemData {
pub inlined: bool,
pub linkage: Linkage,
pub visibility: Visibility,
pub size_estimate: usize,
}
Expand description
Auxiliary info about a MonoItem
.
Fields§
§inlined: bool
A cached copy of the result of MonoItem::instantiation_mode
, where
GloballyShared
maps to false
and LocalCopy
maps to true
.
linkage: Linkage
§visibility: Visibility
§size_estimate: usize
A cached copy of the result of MonoItem::size_estimate
.
Auto Trait Implementations§
impl RefUnwindSafe for MonoItemData
impl Send for MonoItemData
impl Sync for MonoItemData
impl Unpin for MonoItemData
impl UnwindSafe for MonoItemData
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