[][src]Macro lifeline::impl_storage_take

macro_rules! impl_storage_take {
    ( $name:ty ) => { ... };
}

Specifies that this resource is taken, and is !Clone.

Example:

use lifeline::impl_storage_take;

struct ExampleResource {}

impl_storage_take!(ExampleResource);