aboutsummaryrefslogtreecommitdiff
path: root/rtic-macros/src/syntax/backend/template.rs
blob: 6dad114a1d8b8f5dec9ed768557be087391c7dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use syn::{
    parse::{Parse, ParseStream},
    Result,
};

#[derive(Debug)]
pub struct BackendArgs {
    // Define your backend-specific input here
}

impl Parse for BackendArgs {
    fn parse(input: ParseStream) -> Result<Self> {
        todo!("define how to parse your backend-specific arguments")
    }
}