pub enum ItemClass {
Keep,
Move(MoveInfo),
}Expand description
Result of classifying one item.
Variants§
Keep
Stays in the parent module verbatim (use, mod, macro_rules!, …).
Move(MoveInfo)
Moves into a child file.
Auto Trait Implementations§
impl Freeze for ItemClass
impl RefUnwindSafe for ItemClass
impl Send for ItemClass
impl Sync for ItemClass
impl Unpin for ItemClass
impl UnsafeUnpin for ItemClass
impl UnwindSafe for ItemClass
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