aboutsummaryrefslogtreecommitdiff
path: root/vendor/rayon/src/private.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/rayon/src/private.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/rayon/src/private.rs')
-rw-r--r--vendor/rayon/src/private.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/rayon/src/private.rs b/vendor/rayon/src/private.rs
deleted file mode 100644
index c85e77b..0000000
--- a/vendor/rayon/src/private.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-//! The public parts of this private module are used to create traits
-//! that cannot be implemented outside of our own crate. This way we
-//! can feel free to extend those traits without worrying about it
-//! being a breaking change for other implementations.
-
-/// If this type is pub but not publicly reachable, third parties
-/// can't name it and can't implement traits using it.
-#[allow(missing_debug_implementations)]
-pub struct PrivateMarker;
-
-macro_rules! private_decl {
- () => {
- /// This trait is private; this method exists to make it
- /// impossible to implement outside the crate.
- #[doc(hidden)]
- fn __rayon_private__(&self) -> crate::private::PrivateMarker;
- };
-}
-
-macro_rules! private_impl {
- () => {
- fn __rayon_private__(&self) -> crate::private::PrivateMarker {
- crate::private::PrivateMarker
- }
- };
-}