df-derive-macros 0.3.0

Procedural derive macro implementation for df-derive.
Documentation
1
2
3
4
5
6
7
8
use super::{LeafSpec, WrapperShape};

#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TupleElement {
    pub leaf_spec: LeafSpec,
    pub wrapper_shape: WrapperShape,
    pub outer_smart_ptr_depth: usize,
}