Struct wasm_bindgen_backend::ast::Program
source · pub struct Program {
pub exports: Vec<Export>,
pub imports: Vec<Import>,
pub enums: Vec<Enum>,
pub structs: Vec<Struct>,
pub typescript_custom_sections: Vec<String>,
pub inline_js: Vec<String>,
}Expand description
An abstract syntax tree representing a rust program. Contains extra information for joining up this rust code with javascript.
Fields§
§exports: Vec<Export>rust -> js interfaces
imports: Vec<Import>js -> rust interfaces
enums: Vec<Enum>rust enums
structs: Vec<Struct>rust structs
typescript_custom_sections: Vec<String>custom typescript sections to be included in the definition file
inline_js: Vec<String>Inline JS snippets
Implementations§
Trait Implementations§
source§impl TryToTokens for Program
impl TryToTokens for Program
source§fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic>
fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic>
Attempt to convert a
Self into tokens and add it to the TokenStreamsource§fn try_to_token_stream(&self) -> Result<TokenStream, Diagnostic>
fn try_to_token_stream(&self) -> Result<TokenStream, Diagnostic>
Attempt to convert a
Self into a new TokenStream