macro_rules! Container {
    () => { ... };
    (Send) => { ... };
    (Send + Sync) => { ... };
    (Sync + Send) => { ... };
}
Expand description

Type constructor for Container variants.