macro_rules! static_collect {
($type:ty) => { ... };
}Expand description
If a type is static, we know that it can never hold Gc pointers, so it is safe to provide a
simple empty Collect implementation.
macro_rules! static_collect {
($type:ty) => { ... };
}If a type is static, we know that it can never hold Gc pointers, so it is safe to provide a
simple empty Collect implementation.