summary refs log tree commit diff stats
path: root/src/impls.rs
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2022-05-07 12:18:38 -0300
committerSoniEx2 <endermoneymod@gmail.com>2022-05-07 12:18:38 -0300
commitf21e8e1bea1e93aaa22e4d6baa3a490140977617 (patch)
tree3ea65a5e9ec5d4c1f59d9f813226b65f010e7f5c /src/impls.rs
[Project] LtPtr
"Checked" raw pointers for Rust.
Diffstat (limited to 'src/impls.rs')
-rw-r--r--src/impls.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/impls.rs b/src/impls.rs
new file mode 100644
index 0000000..4690dc9
--- /dev/null
+++ b/src/impls.rs
@@ -0,0 +1,10 @@
+
+/// impls for pointer traits: {Copy,Clone,etc} for {Const,Mut}LtPtr.
+pub mod ptr_traits;
+
+/// impls for CStr.
+#[cfg(feature="std")]
+pub mod cstr;
+
+/// impls for slices.
+pub mod slice;