]> git.lizzy.rs Git - rust.git/blobdiff - library/alloc/src/collections/vec_deque/pair_slices.rs
refactor: VecDeques PairSlices fields to private
[rust.git] / library / alloc / src / collections / vec_deque / pair_slices.rs
index 8e3ac9cfd1d87dc919b7cce59bd8fb1ee8a3b663..6735424a3ef33c1c04dd1094f0dcbe5e620fc06a 100644 (file)
 ///
 /// and the uneven remainder of either A or B is skipped.
 pub struct PairSlices<'a, 'b, T> {
-    pub(crate) a0: &'a mut [T],
-    pub(crate) a1: &'a mut [T],
-    pub(crate) b0: &'b [T],
-    pub(crate) b1: &'b [T],
+    a0: &'a mut [T],
+    a1: &'a mut [T],
+    b0: &'b [T],
+    b1: &'b [T],
 }
 
 impl<'a, 'b, T> PairSlices<'a, 'b, T> {