df-derive-macros 0.3.0

Procedural derive macro implementation for df-derive.
Documentation
1
2
3
4
5
6
7
use proc_macro2::Span;

#[derive(Clone, Copy, Debug)]
pub struct Spanned<T> {
    pub value: T,
    pub span: Span,
}