robusta-codegen 0.2.2

Procedural macro crate to support `robusta`
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::transformation::JavaPath;
use syn::{LifetimeDef, Path};

#[derive(Clone)]
pub(crate) struct StructContext {
    pub(crate) struct_type: Path,
    pub(crate) struct_name: String,
    pub(crate) struct_lifetimes: Vec<LifetimeDef>,
    pub(crate) package: Option<JavaPath>,
}