stack_ptr 0.1.0

An owned pointer to stack-allocated data
Documentation
  • Coverage
  • 100%
    9 out of 9 items documented1 out of 7 items with examples
  • Size
  • Source code size: 5.79 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.45 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • mikeyhew/rust-stack_ptr
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mikeyhew

Provides StackPtr, an owned pointer to stack-allocated data. Create one using the provided stack_ptr! macro:

stack_ptr! {
    let slice: StackPtr<[_]> = StackPtr::new([1,2,3,4,5]);
}