We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91dcb36 commit b271b17Copy full SHA for b271b17
2 files changed
Cargo.toml
@@ -7,7 +7,7 @@ keywords = ["os", "dma"]
7
license = "MIT"
8
name = "dma-api"
9
repository = "https://github.com/drivercraft/dma-api"
10
-version = "0.3.1"
+version = "0.3.2"
11
12
[features]
13
alloc = []
src/dma/slice.rs
@@ -24,6 +24,10 @@ impl<T> DSlice<'_, T> {
24
pub fn is_empty(&self) -> bool {
25
self.len() == 0
26
}
27
+
28
+ pub fn preper_read_all(&self) {
29
+ self.inner.preper_read_all();
30
+ }
31
32
33
impl<'a, T> From<&'a [T]> for DSlice<'a, T> {
0 commit comments