pub enum Exportee {
GlobalVar(GlobalVar),
Func(Func),
}
Expand description
A definition exported out of a module (see also ExportKey
).
Variants§
Trait Implementations§
source§impl InnerTransform for Exportee
impl InnerTransform for Exportee
fn inner_transform_with( &self, transformer: &mut impl Transformer ) -> Transformed<Self>
source§impl InnerVisit for Exportee
impl InnerVisit for Exportee
fn inner_visit_with<'a>(&'a self, visitor: &mut impl Visitor<'a>)
impl Copy for Exportee
Auto Trait Implementations§
impl RefUnwindSafe for Exportee
impl Send for Exportee
impl Sync for Exportee
impl Unpin for Exportee
impl UnwindSafe for Exportee
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