pub struct FnEntry {
pub key: FnKey,
pub module: ModuleId,
pub index_in_module: u32,
}Expand description
One entry in the function table. The key field is the public
canonical handle; module is the owning scope; index_in_module
is the position of this fn in its scope’s source-order fn list
(useful for stable display ordering).
Fields§
§key: FnKey§module: ModuleId§index_in_module: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for FnEntry
impl RefUnwindSafe for FnEntry
impl Send for FnEntry
impl Sync for FnEntry
impl Unpin for FnEntry
impl UnsafeUnpin for FnEntry
impl UnwindSafe for FnEntry
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