Struct wasm_bindgen_backend::ast::Program [−][src]
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>, }
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
impl TryToTokens for Program
[src]
impl TryToTokens for Program
[src]fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic>
[src]
fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic>
[src]Attempt to convert a Self
into tokens and add it to the TokenStream
fn try_to_token_stream(&self) -> Result<TokenStream, Diagnostic>
[src]
fn try_to_token_stream(&self) -> Result<TokenStream, Diagnostic>
[src]Attempt to convert a Self
into a new TokenStream
Auto Trait Implementations
impl RefUnwindSafe for Program
impl !Send for Program
impl !Sync for Program
impl Unpin for Program
impl UnwindSafe for Program
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more