static_leak

Crates.iostatic_leak
lib.rsstatic_leak
version0.1.0
sourcesrc
created_at2022-11-10 16:43:01.09275
updated_at2022-11-10 16:43:01.09275
descriptionLeak references with static lifetimes from static Mutexes and RwLocks
homepage
repositoryhttps://github.com/itemis/static_leak/
max_upload_size
id712233
size29,259
(bewee-i)

documentation

README

static_leak

Build Status codecov badge License: MIT License: Apache 2.0

This crate extends Mutexes and RwLocks wrapping references with static lifetimes to leak these raw underlying references. This can be useful to safely obtain a static mutable reference without using any unsafe code when interacting with a legacy C project via FFI.

lazy_static! {
    static ref VAR: RwLock<i8> = RwLock::new(42);
}

fn bar(_: &'static mut i8) {}

fn main() {
    bar(RwLockWriteGuard::leak(VAR.write().unwrap()));
}

This crate supports implementations from the following crates, which are activated through the respective feature flags:

  • std
  • async-std
  • spin
Commit count: 2

cargo fmt