Skip to content
/ captur Public

A macro to capture the struct within the closure, ensuring the correct drop order.

License

Notifications You must be signed in to change notification settings

MitMaro/captur

Repository files navigation

Crates.io docs GitHub license

Captur

Starting in Rust 2021, Rust will no longer capture whole structs and instead will only capture a disjoint set of the fields used in a closure. In some cases, it is necessary to capture the structs to retain a particular drop order. This macro will capture the struct within the closure, ensuring the correct drop order.

The Fix

The typical fix to this problem is to create an unused reference to the struct.

let some_struct = SomeStruct::new();
let result = || {
    // capture some_struct within the closure
    let _ = &some_struct;
    println!("{}", some_struct.y);
}

While this is trivial to implement in closures where capturing is required, without a comment, the meaning of the unused line is difficult to determine. This macro provides a self documenting and potentially more concise way to capture the structs.

Installation and Usage

[dependencies]
captur = "1"
use captur::capture;

fn send_event_and_action(action: &Action, event: Event) {
    send(|sender| {
        capture!(action, event);
        sender.send(action.name.as_str(), event.code);
    });
}

Supported Rust Versions

This project will support Rust versions since 1.56.0, the first release of Rust 2021.

Dropping support for a Rust version will result in a major version bump, following Semantic Versioning.

License

Captur is released under the ISC license. See LICENSE.

About

A macro to capture the struct within the closure, ensuring the correct drop order.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published