use syn::{ parse::{Parse, ParseStream}, Error, Result, }; #[derive(Debug)] pub struct BackendArgs(); impl Parse for BackendArgs { fn parse(input: ParseStream) -> Result { Err(Error::new( input.span(), "esp32c6 backend does not accept any arguments", )) } }