| commit | a9dc0475f7f938d7051019f22b1442c7f27b080e | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Sat Apr 10 12:27:48 2021 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Sat Apr 10 12:27:48 2021 -0700 |
| tree | f38d958bd8acba273b39caa6ff87e272d9ec027d | |
| parent | 01b9e5f0a584f9ae6a22083a3cb7baa17a89a52d [diff] [blame] |
Encapsulate RustVec repr to single module
diff --git a/src/rust_vec.rs b/src/rust_vec.rs index 126fdbf..d449231 100644 --- a/src/rust_vec.rs +++ b/src/rust_vec.rs
@@ -5,7 +5,7 @@ #[repr(C)] pub struct RustVec<T> { - pub(crate) repr: Vec<T>, + repr: Vec<T>, } impl<T> RustVec<T> {