]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_mir/dataflow/impls/mod.rs
Export dataflow impls by name
[rust.git] / src / librustc_mir / dataflow / impls / mod.rs
index b5f1a2d4eb94b82fa29079b4b1f49617e5f1ae2d..e199a174efbc30d6f220dc65e9e1b3c83adb64b3 100644 (file)
 use crate::dataflow::drop_flag_effects;
 
 mod borrowed_locals;
+pub(super) mod borrows;
+mod liveness;
 mod storage_liveness;
 
-pub use self::borrowed_locals::*;
-pub use self::storage_liveness::*;
-
-pub(super) mod borrows;
+pub use self::borrowed_locals::{MaybeBorrowedLocals, MaybeMutBorrowedLocals};
+pub use self::borrows::Borrows;
+pub use self::liveness::MaybeLiveLocals;
+pub use self::storage_liveness::{MaybeRequiresStorage, MaybeStorageLive};
 
 /// `MaybeInitializedPlaces` tracks all places that might be
 /// initialized upon reaching a particular point in the control flow